Microsoft/TypeScript

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

Open

#8,624 建立於 2016年5月16日

在 GitHub 查看
 (22 留言) (1 反應) (0 負責人)TypeScript (48,455 star) (6,726 fork)batch import
Breaking ChangeEffort: ModerateHelp WantedSuggestion

描述

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)

貢獻者指南

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