summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/non-extensible-elements9.js
blob: 847a7d006e300c858eca6d3bac777b7c10630fb7 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
function testNonExtensibleStoreFallibleT() {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, 0];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // Now reduce initialized-length by one, so that initialized-length < capacity is true.
    x.length = 1;

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    x[1] = 4;

    assertEq(x.length, 1);
    assertEq(x[0], 8);
}

for (var i = 0; i < 15; ++i)
    testNonExtensibleStoreFallibleT();

// Repeat testNonExtensibleStoreFallibleT for the MIRType::Value specialization.
function testNonExtensibleStoreFallibleV(i) {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, ""];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // Now reduce initialized-length by one, so that initialized-length < capacity is true.
    x.length = 1;

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    x[1] = [true, 1][i & 1];

    assertEq(x.length, 1);
    assertEq(x[0], 8);
}

for (var i = 0; i < 15; ++i)
    testNonExtensibleStoreFallibleV(i);

function testForInIterationNonExtensibleStoreFallibleT() {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, 0];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // Modifying an array's length takes a different path during for-in
    // iteration of the array.
    for (var k in x) {
        // Now reduce initialized-length by one, so that initialized-length < capacity is true.
        x.length = 1;
    }

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    x[1] = 4;

    assertEq(x.length, 1);
    assertEq(x[0], 8);
}

for (var i = 0; i < 15; ++i)
    testForInIterationNonExtensibleStoreFallibleT();

// Repeat testForInIterationNonExtensibleStoreFallibleT for the MIRType::Value specialization.
function testForInIterationNonExtensibleStoreFallibleV(i) {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, ""];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // Modifying an array's length takes a different path during for-in
    // iteration of the array.
    for (var k in x) {
        // Now reduce initialized-length by one, so that initialized-length < capacity is true.
        x.length = 1;
        break;
    }

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    x[1] = [true, 1][i & 1];

    assertEq(x.length, 1);
    assertEq(x[0], 8);
}

for (var i = 0; i < 15; ++i)
    testForInIterationNonExtensibleStoreFallibleV(i);

function testNonExtensibleArrayPop() {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, 0];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // Now reduce initialized-length by one, so that initialized-length < capacity is true.
    x.pop();

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    x[1] = 4;

    assertEq(x.length, 1);
    assertEq(x[0], 8);
}

for (var i = 0; i < 15; ++i)
    testNonExtensibleArrayPop();

function testNonExtensibleArrayPopNonWritable() {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, 0];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // And make the "length" property non-writable.
    Object.defineProperty(x, "length", {writable: false});

    // Now reduce initialized-length by one, so that initialized-length < capacity is true.
    // This doesn't update |x.length|, because the "length" property is non-writable.
    try {
        x.pop();
    } catch {}

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    for (var i = 0; i < 100; ++i)
        x[1] = 4;

    assertEq(x.length, 2);
    assertEq(x[0], 8);
    assertEq(x[1], undefined);
    assertEq(1 in x, false);
}

for (var i = 0; i < 15; ++i)
    testNonExtensibleArrayPopNonWritable();

function testNonExtensibleArrayShift() {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, 0];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // Now reduce initialized-length by one, so that initialized-length < capacity is true.
    x.shift();

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    x[1] = 4;

    assertEq(x.length, 1);
    assertEq(x[0], 0);
}

for (var i = 0; i < 15; ++i)
    testNonExtensibleArrayShift();

function testNonExtensibleArraySplice() {
    // Create an array with initialized-length = capacity = 2.
    var x = [8, 0];

    // Make it non-extensible.
    Object.preventExtensions(x);

    // Now reduce initialized-length by one, so that initialized-length < capacity is true.
    x.splice(1, 1);

    // There's enough capacity in the elements storage to save the new element,
    // but we still need to reject the store since the object is non-extensible.
    x[1] = 4;

    assertEq(x.length, 1);
    assertEq(x[0], 8);
}

for (var i = 0; i < 15; ++i)
    testNonExtensibleArraySplice();