comparison: js/src/jit-test/tests/arguments/defaults-bug790424.js
js/src/jit-test/tests/arguments/defaults-bug790424.js
- branch
- TOR_BUG_9701
- changeset 13
- 44a2da4a2ab2
equal
deleted
inserted
replaced
|
1 function f1(g=((function () { return 4; }) for (x of [1]))) { |
|
2 return g.next()(); |
|
3 } |
|
4 assertEq(f1(), 4); |