comparison: js/src/jit-test/tests/basic/bug646968-2.js
js/src/jit-test/tests/basic/bug646968-2.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 var x = 5; |
|
2 (let (x = x) assertEq(x, 5)); |
|
3 (let (x = eval("x")) assertEq(x, 5)); |
|
4 (let (x = function () { with ({}) return x; }) assertEq(x(), 5)); |