comparison: js/src/jit-test/tests/ion/bug792220.js
js/src/jit-test/tests/ion/bug792220.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 var p = Proxy.create({ |
|
2 has : function(id) {} |
|
3 }); |
|
4 Object.prototype.__proto__ = p; |
|
5 function f() { |
|
6 if (/a/.exec("a")) |
|
7 return 1; |
|
8 return 0; |
|
9 } |
|
10 delete RegExp.prototype.test; |
|
11 f(); |
|
12 |