comparison: js/src/jit-test/tests/basic/bug706795.js
js/src/jit-test/tests/basic/bug706795.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 executed = false; |
|
2 Object.defineProperty(Object.prototype, 'x', { set: function() { executed = true; } }); |
|
3 function A() { |
|
4 this.x = 12; |
|
5 } |
|
6 new A(); |
|
7 assertEq(executed, true); |