summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/with/unscopables-inc-dec.js
blob: bad2ecd079efb5289a5eb90cd59deca91392b631 (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
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-object-environment-records-hasbinding-n
description: >
  @@unscopables should be looked up exactly once for inc/dec.
info: |
  UpdateExpression : LeftHandSideExpression ++
  1. Let lhs be the result of evaluating LeftHandSideExpression.

  GetIdentifierReference ( lex, name, strict )
  [...]
  3. Let exists be ? envRec.HasBinding(name).

  HasBinding ( N )
  [...]
  6. Let unscopables be ? Get(bindings, @@unscopables).
flags: [noStrict]
features: [Symbol.unscopables]
---*/

var unscopablesGetterCalled = 0;
var a, b, flag = true;
with (a = { x: 7 }) {
  with (b = { x: 4, get [Symbol.unscopables]() {
                      unscopablesGetterCalled++;
                      return { x: flag=!flag };
                    } }) {
    x++;
  }
}

assert.sameValue(unscopablesGetterCalled, 1);
assert.sameValue(a.x, 7);
assert.sameValue(b.x, 5);

unscopablesGetterCalled = 0;
flag = true;
with (a = { x: 7 }) {
  with (b = { x: 4, get [Symbol.unscopables]() {
                      unscopablesGetterCalled++;
                      return { x: flag=!flag };
                    } }) {
    x--;
  }
}

assert.sameValue(unscopablesGetterCalled, 1);
assert.sameValue(a.x, 7);
assert.sameValue(b.x, 3);

reportCompare(0, 0);