michael@0: // 'this' in a toplevel arrow is the global object. michael@0: michael@0: var f = () => this; michael@0: assertEq(f(), this); michael@0: assertEq({f: f}.f(), this);