blob: 0f60df7465d0c64b74b2e6fc931c7315c75f702a [file] [log] [blame]
new class extends class { } {
constructor() {
assertEq(eval("super(); this"), this);
assertEq(this, eval("this"));
assertEq(this, (()=>this)());
}
}();
new class extends class { } {
constructor() {
(()=>super())();
assertEq(this, eval("this"));
assertEq(this, (()=>this)());
}
}();
if (typeof reportCompare === 'function')
reportCompare(0,0,"OK");