blob: 0379ef86e5b4831b87998408f48e47abc53bb47c [file] [log] [blame]
// 'this' in a toplevel arrow is the global object.
var f = () => this;
assertEq(f(), this);
assertEq({f: f}.f(), this);