Source code
Revision control
Copy as Markdown
Other Tools
// Make sure it doesn't matter when we make the arrow function
new class extends class { } {
constructor() {
let arrow = () => this;
assertThrowsInstanceOf(arrow, ReferenceError);
super();
assertEq(arrow(), this);
}
}();
if (typeof reportCompare === 'function')
reportCompare(0,0,"OK");