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