summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/new-read-before-write.js
blob: a5259b21169afc4378083c5dcbbcecbaddf1b7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function Foo() {
  var x = this.property;
  this.property = 5;
  glob = x;
}
Foo.prototype.property = 10;
for (var i = 0; i < 10; i++) {
  new Foo();
  assertEq(glob, 10);
}

function Bar() {
  this.property;
  this.other = 5;
}
Bar.prototype.other = 10;
Object.defineProperty(Bar.prototype, "property", {
  get: function() { glob = this.other; }
});
for (var i = 0; i < 10; i++) {
  new Bar();
  assertEq(glob, 10);
}