Mattias Buelens 3c11a4a930 Fix super method call in private instance method calling overridden method (#9801)
* Fix super method call in private instance method calling overridden method

* Change return value in test fixtures

* Update tests to verify that overridden method is not called
2019-03-31 18:50:29 -04:00

22 lines
349 B
JavaScript

class Base {
static basePublicStaticMethod() {
return 'good';
}
}
class Sub extends Base {
static basePublicStaticMethod() {
return 'bad';
}
static #subStaticPrivateMethod() {
return super.basePublicStaticMethod();
}
static check() {
return Sub.#subStaticPrivateMethod();
}
}
expect(Sub.check()).toEqual('good');