Microsoft/TypeScript

Bug: Accessing private statics in a class via its derived class is allowed

Open

#8,624 opened on May 16, 2016

View on GitHub
 (22 comments) (1 reaction) (0 assignees)TypeScript (48,455 stars) (6,726 forks)batch import
Breaking ChangeEffort: ModerateHelp WantedSuggestion

Description

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)

Contributor guide

Bug: Accessing private statics in a class via its derived class is allowed · Microsoft/TypeScript#8624 | Good First Issue