Add test verifying that optional call preserves `this`. (#2436)

* Add test verifying that optional call preserves `this`.

* Update test/language/expressions/optional-chaining/optional-call-preserves-this.js

Co-Authored-By: Leo Balter <leonardo.balter@gmail.com>
This commit is contained in:
Ross Kirsling 2019-12-03 13:28:15 -08:00 committed by Leo Balter
parent 5c41447b75
commit 09380a4ae4
1 changed files with 27 additions and 0 deletions

View File

@ -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);