comparison: js/src/jit-test/tests/basic/bug826581.js
js/src/jit-test/tests/basic/bug826581.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 // Don't crash. |
|
2 |
|
3 try { |
|
4 x = " () "; |
|
5 for (var y = 0; y < 19; y++) { |
|
6 x += x; |
|
7 } |
|
8 } catch (e) {} |
|
9 |
|
10 try { |
|
11 "".replace(x, "", "gy"); |
|
12 } catch (e) { } |