summaryrefslogtreecommitdiff
path: root/test/language/expressions/optional-chaining/optional-call-preserves-this.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/language/expressions/optional-chaining/optional-call-preserves-this.js')
-rw-r--r--test/language/expressions/optional-chaining/optional-call-preserves-this.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/language/expressions/optional-chaining/optional-call-preserves-this.js b/test/language/expressions/optional-chaining/optional-call-preserves-this.js
new file mode 100644
index 000000000..9e1eee629
--- /dev/null
+++ b/test/language/expressions/optional-chaining/optional-call-preserves-this.js
@@ -0,0 +1,27 @@
+// Copyright (C) 2019 Sony Interactive Entertainment Inc. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+/*---
+esid: sec-optional-chaining-chain-evaluation
+description: >
+ optional call must preserve this context, as with a non-optional call
+info: |
+ OptionalChain : ?. Arguments
+ 1. Let thisChain be this OptionalChain.
+ 2. Let tailCall be IsInTailPosition(thisChain).
+ 3. Return ? EvaluateCall(baseValue, baseReference, Arguments, tailCall).
+features: [optional-chaining]
+---*/
+
+const a = {
+ b() { return this._b; },
+ _b: { c: 42 }
+};
+
+assert.sameValue(a?.b().c, 42);
+assert.sameValue((a?.b)().c, 42);
+
+assert.sameValue(a.b?.().c, 42);
+assert.sameValue((a.b)?.().c, 42);
+
+assert.sameValue(a?.b?.().c, 42);
+assert.sameValue((a?.b)?.().c, 42);