mirror of https://github.com/tc39/test262.git
Add logical assignment tests
This commit is contained in:
parent
ec6f77c4d1
commit
61188b8abc
|
@ -0,0 +1,25 @@
|
|||
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-assignment-operators-runtime-semantics-evaluation
|
||||
description: >
|
||||
ToBoolean returns `false` for [[IsHTMLDDA]] object; rval is not evaluated.
|
||||
info: |
|
||||
AssignmentExpression : LeftHandSideExpression &&= AssignmentExpression
|
||||
|
||||
1. Let lref be the result of evaluating LeftHandSideExpression.
|
||||
2. Let lval be ? GetValue(lref).
|
||||
3. Let lbool be ! ToBoolean(lval).
|
||||
4. If lbool is false, return lval.
|
||||
|
||||
The [[IsHTMLDDA]] Internal Slot / Changes to ToBoolean
|
||||
|
||||
1. If argument has an [[IsHTMLDDA]] internal slot, return false.
|
||||
2. Return true.
|
||||
features: [IsHTMLDDA, logical-assignment-operators]
|
||||
---*/
|
||||
|
||||
var IsHTMLDDA = $262.IsHTMLDDA;
|
||||
var value = IsHTMLDDA;
|
||||
assert.sameValue(value &&= unresolved, IsHTMLDDA);
|
||||
assert.sameValue(value, IsHTMLDDA);
|
|
@ -0,0 +1,19 @@
|
|||
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-assignment-operators-runtime-semantics-evaluation
|
||||
description: >
|
||||
??= doesn't special-case [[IsHTMLDDA]] object; rval is not evaluated.
|
||||
info: |
|
||||
AssignmentExpression : LeftHandSideExpression ??= AssignmentExpression
|
||||
|
||||
1. Let lref be the result of evaluating LeftHandSideExpression.
|
||||
2. Let lval be ? GetValue(lref).
|
||||
3. If lval is neither undefined nor null, return lval.
|
||||
features: [IsHTMLDDA, logical-assignment-operators]
|
||||
---*/
|
||||
|
||||
var IsHTMLDDA = $262.IsHTMLDDA;
|
||||
var value = IsHTMLDDA;
|
||||
assert.sameValue(value ??= unresolved, IsHTMLDDA);
|
||||
assert.sameValue(value, IsHTMLDDA);
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
esid: sec-assignment-operators-runtime-semantics-evaluation
|
||||
description: >
|
||||
ToBoolean returns `false` for [[IsHTMLDDA]] object; rval is evaluated.
|
||||
info: |
|
||||
AssignmentExpression : LeftHandSideExpression ||= AssignmentExpression
|
||||
|
||||
1. Let lref be the result of evaluating LeftHandSideExpression.
|
||||
2. Let lval be ? GetValue(lref).
|
||||
3. Let lbool be ! ToBoolean(lval).
|
||||
[...]
|
||||
7. Perform ? PutValue(lref, rval).
|
||||
8. Return rval.
|
||||
|
||||
The [[IsHTMLDDA]] Internal Slot / Changes to ToBoolean
|
||||
|
||||
1. If argument has an [[IsHTMLDDA]] internal slot, return false.
|
||||
2. Return true.
|
||||
features: [IsHTMLDDA, logical-assignment-operators]
|
||||
---*/
|
||||
|
||||
var value = $262.IsHTMLDDA;
|
||||
assert.sameValue(value ||= 2, 2);
|
||||
assert.sameValue(value, 2);
|
Loading…
Reference in New Issue