class Parent { }; class Child extends Parent { constructor() { (() => { super.a = 10; // Implicitly use the "this" register. So it must be initialized. })(); } }; new Child();