Microsoft/TypeScript
Bug: Accessing private statics in a class via its derived class is allowed
Aperta
#8624 aperta il 16 mag 2016
Breaking ChangeEffort: ModerateHelp WantedSuggestion
Metriche repository
- Star
- (108.860 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
TypeScript Version:
1.8.X
Code
class FooBase {
private static privateStatic: string = "";
testBase(): void {
console.log(FooBase.privateStatic);
// Should error, but doesn't
console.log(Foo.privateStatic);
}
}
class Foo extends FooBase {
test() {
// Should error, and does
console.log(Foo.privateStatic);
}
}
Expected behavior:
Accessing Foo.privateStatic shouldn't be allowed, regardless of the context it's called in.
Actual behavior:
FooBase is allowed to do this.
(thanks @sethbrenith for deducing this)