summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Array/shift-no-has-trap.js
blob: e941ba72058d68ec7fd3ebb1c6246d61e088e163 (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
// Test that Array.prototype.shift doesn't call the [[HasProperty]] internal
// method of objects when retrieving the element at index 0.

var log = [];
var array = [];
var proxy = new Proxy(array, new Proxy({}, {
    get(t, trap, r) {
      return (t, pk, ...more) => {
        log.push(`${trap}:${String(pk)}`);
        return Reflect[trap](t, pk, ...more);
      };
    }
}));

var result;

result = Array.prototype.shift.call(proxy);
assertEqArray(log, [
  "get:length",
  "set:length", "getOwnPropertyDescriptor:length", "defineProperty:length"
]);
assertEq(result, undefined);

log.length = 0;
array.push(1);

result = Array.prototype.shift.call(proxy);
assertEqArray(log, [
  "get:length",
  "get:0",
  "deleteProperty:0",
  "set:length", "getOwnPropertyDescriptor:length", "defineProperty:length"
]);
assertEq(result, 1);

log.length = 0;
array.push(2, 3);

result = Array.prototype.shift.call(proxy);
assertEqArray(log, [
  "get:length",
  "get:0",
  "has:1", "get:1", "set:0", "getOwnPropertyDescriptor:0", "defineProperty:0",
  "deleteProperty:1",
  "set:length", "getOwnPropertyDescriptor:length", "defineProperty:length"
]);
assertEq(result, 2);

log.length = 0;
array.push(4, 5);

result = Array.prototype.shift.call(proxy);
assertEqArray(log, [
  "get:length",
  "get:0",
  "has:1", "get:1", "set:0", "getOwnPropertyDescriptor:0", "defineProperty:0",
  "has:2", "get:2", "set:1", "getOwnPropertyDescriptor:1", "defineProperty:1",
  "deleteProperty:2",
  "set:length", "getOwnPropertyDescriptor:length", "defineProperty:length"
]);
assertEq(result, 3);

if (typeof reportCompare === "function")
  reportCompare(true, true);