bug832058.js (235B)
1 // |jit-test| 2 function f(c) { 3 var b = arguments; 4 if (c == 1) 5 b = 1; 6 return b; 7 } 8 9 evaluate("f('a', 'b', 'c', 'd', 'e');"); 10 function test(){ 11 var args = f('a', (0), 'c'); 12 var s; 13 for (var v of args) 14 s += v; 15 } 16 test();