js/src/jit-test/tests/arrow-functions/this-4.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:84f145e14925
1 // 'this' in a toplevel arrow is the global object.
2
3 var f = () => this;
4 assertEq(f(), this);
5 assertEq({f: f}.f(), this);

mercurial