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/basic/testUndemoteLateGlobalSlots.js
js/src/jit-test/tests/basic/testUndemoteLateGlobalSlots.js
changeset 0
6474c204b198
equal
deleted
inserted
replaced
-1:000000000000
0:1588079a1340
1
function testUndemoteLateGlobalSlots() {
2
for each (aaa in ["", "", 0/0, ""]) {
3
++aaa;
4
for each (bbb in [0, "", aaa, "", 0, "", 0/0]) {
5
}
6
}
7
delete aaa;
8
delete bbb;
9
return "ok";
10
}
11
assertEq(testUndemoteLateGlobalSlots(), "ok");