summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/propertyOptimize-3.js
blob: 90327e47a3354676d3f6a17af7f8e70971a5a44f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Properties cleared in the middle of a single function constructor.

function foo(x, y) {
  this.f = 0;
  this.g = x + y;
  this.h = 2;
}

var called = false;
var a = 0;
var b = {valueOf: function() { Object.defineProperty(Object.prototype, 'g', {set: function() { called = true }}) }};
var c = new foo(a, b);

assertEq(called, true);
assertEq(c.g, undefined);

// Properties cleared in the middle of a constructor callee.

function foo2(x, y) {
  this.a = 0;
  this.b = 1;
  bar2.call(this, x, y);
  this.c = 2;
}
function bar2(x, y) {
  this.d = x + y;
  this.e = 3;
}

var called2 = false;
var xa = 0;
var xb = {valueOf: function() { Object.defineProperty(Object.prototype, 'e', {set: function() { called2 = true }}) }};
var xc = new foo2(xa, xb);

assertEq(called2, true);
assertEq(xc.e, undefined);
assertEq(xc.c, 2);

// Properties cleared after a constructor callee.

function foo3() {
  this.aa = 0;
  this.bb = 1;
  bar3.call(this);
  this.cc = 2;
  baz();
  xbar3.call(this);
  this.dd = 3;
}
function bar3() {
  this.ee = 4;
}
function xbar3() {
  this.ff = 5;
}
function baz() {
  eval("xbar3.call = function() { called3 = true }");
}

var called3 = false;
var c3 = new foo3();
assertEq(c3.cc, 2);
assertEq(c3.ee, 4);
assertEq(c3.ff, undefined);
assertEq(c3.dd, 3);
assertEq(called3, true);