comparison: js/src/jit-test/tests/baseline/bug841718.js
js/src/jit-test/tests/baseline/bug841718.js
- branch
- TOR_BUG_3246
- changeset 6
- 8bccb770b82d
equal
deleted
inserted
replaced
|
1 // Don't assert in the decompiler. |
|
2 function f() { |
|
3 var o = null; |
|
4 |
|
5 try { |
|
6 delete o.prop; |
|
7 } catch(e) {} |
|
8 |
|
9 try { |
|
10 delete o[1]; |
|
11 } catch(e) {} |
|
12 |
|
13 try { |
|
14 o[{}]++; |
|
15 } catch(e) {} |
|
16 } |
|
17 f(); |