-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggestion Backlog Slog, 6/15/2016 maybe #9199
Comments
Just curious what "slog" means? |
slog:
|
These haven't been covered yet |
Partial Classes (#563)Assume class X {
} The question is whether partial class X {
foo() { }
} should be equivalent to interface X {
foo();
}
X.prototype.foo = function() { }
Inferring new type parameters on arrow functions (#5737)type Thing = <T>(x: string, c: T) => T;
let x: Thing = (x, foo) => foo;
let b = x("", 32); Basically want the contextual type of Report error when base classes haven't been defined (#5794)👍, be helpful to our users! Avoid emitting 'var' for every single namespace (#5553)Resolution: Seems reasonable, 👍 Add
|
new myVariable.constructor()
doesn't compile #4356.constructor
properties of static and instance sidesThe text was updated successfully, but these errors were encountered: