comparison: js/src/jit-test/tests/basic/testBug578044.js
js/src/jit-test/tests/basic/testBug578044.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 this.watch("x", Object.create) |
|
2 try { |
|
3 (function() { |
|
4 this.__defineGetter__("x", |
|
5 function() { |
|
6 return this |
|
7 }) |
|
8 })() |
|
9 } catch(e) {} |
|
10 Object.defineProperty(x, "x", ({ |
|
11 set: Uint16Array |
|
12 })) |
|
13 |