comparison: js/src/jit-test/tests/basic/bug614688.js
js/src/jit-test/tests/basic/bug614688.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 function Foo() { |
|
2 u = 0; |
|
3 } |
|
4 |
|
5 var x = new Foo(); |
|
6 assertEq(Object.getPrototypeOf(x) === Foo.prototype, true); |
|
7 assertEq(Object.getPrototypeOf(x) === Object.prototype, false); |