The Tor Browser
/ file comparison
Search:
summary
shortlog
changelog
graph
tags
bookmarks
branches
files
help
file
revisions
annotate
diff
comparison
raw
comparison: js/src/jit-test/tests/ion/bug759213.js
js/src/jit-test/tests/ion/bug759213.js
changeset 0
6474c204b198
equal
deleted
inserted
replaced
-1:000000000000
0:dce59f9949f5
1
// |jit-test| error: ReferenceError
2
function testNestedForIn() {
3
var a = {x: 1, y: (/\\u00fd[]/ ), z: 3};
4
for (var p1 in a)
5
for (var { w } = 0 ; ; )
6
testJSON(t);
7
}
8
9
assertEq(testNestedForIn(), 'xx xy xz yx yy yz zx zy zz ');