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/for-of/arrays-slow-3.js
js/src/jit-test/tests/for-of/arrays-slow-3.js
changeset 0
6474c204b198
equal
deleted
inserted
replaced
-1:000000000000
0:88ff9d5d4472
1
// Nested for-of loops on the same slow array get distinct iterators.
2
3
var a = [1, 2, 3];
4
a.slow = true;
5
var s = '';
6
for (var x of a)
7
for (var y of a)
8
s += '' + x + y + ',';
9
assertEq(s, '11,12,13,21,22,23,31,32,33,');