comparison: js/src/jit-test/tests/arrow-functions/this-4.js
js/src/jit-test/tests/arrow-functions/this-4.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
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); |