comparison: js/src/jit-test/tests/basic/bug685313.js
js/src/jit-test/tests/basic/bug685313.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 |
|
2 function foo() { |
|
3 function D(){} |
|
4 arr = [ |
|
5 new (function D ( ) { |
|
6 D += '' + foo; |
|
7 }), |
|
8 new D |
|
9 ]; |
|
10 } |
|
11 foo(); |