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