comparison: js/src/jit-test/tests/arrow-functions/strict-3.js
js/src/jit-test/tests/arrow-functions/strict-3.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 // "use strict" is not special as the body of an arrow function without braces. |
|
2 |
|
3 var f = (a = obj => { with (obj) return x; }) => "use strict"; |
|
4 assertEq(f(), "use strict"); |