js/src/jit-test/tests/basic/non-extensible-array.js

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:0cf5380b7400
1
2 function foo(x) {
3 Object.seal(x);
4 x[3] = 4;
5 assertEq("" + x, "1,2,3");
6 }
7 foo([1,2,3]);

mercurial