comparison: js/src/jit-test/tests/baseline/bug842313.js
js/src/jit-test/tests/baseline/bug842313.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function concat(v, index, array) {} |
|
2 var strings = ['hello', 'Array', 'WORLD']; |
|
3 try { |
|
4 strings.forEach(); |
|
5 } catch(e) { |
|
6 strings.forEach(concat); |
|
7 } |