mirror of https://github.com/tc39/test262.git
Logical Assignment Operators: additional syntax tests
This commit is contained in:
parent
2778324491
commit
ffaae1f7ec
|
@ -0,0 +1,18 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: >
|
||||||
|
Strict Mode - SyntaxError is thrown if the identifier arguments
|
||||||
|
appear as the LeftHandSideExpression of a Logical Assignment
|
||||||
|
operator(&&=)
|
||||||
|
flags: [onlyStrict]
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
arguments &&= 20;
|
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: >
|
||||||
|
Strict Mode - SyntaxError is thrown if the identifier eval appear
|
||||||
|
as the LeftHandSideExpression of a Logical Assignment operator(&&=)
|
||||||
|
flags: [onlyStrict]
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
eval &&= 20;
|
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators-static-semantics-early-errors
|
||||||
|
info: |
|
||||||
|
It is an early Syntax Error if AssignmentTargetType of
|
||||||
|
LeftHandSideExpression is invalid or strict.
|
||||||
|
description: Logical "&&=" assignment with non-simple target
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
1 &&= 1;
|
|
@ -0,0 +1,58 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
info: |
|
||||||
|
White Space and Line Terminator between LeftHandSideExpression and "@="
|
||||||
|
or between "@=" and AssignmentExpression are allowed
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: Checking by evaluating expression "x[...]&&=[...]y"
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
var x;
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x &&= 2, 2, 'U+0009 (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+0009 (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x&&=2, 2, 'U+000B (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+000B (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x&&=2, 2, 'U+000C (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+000C (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x &&= 2, 2, 'U+0020 (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+0020 (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x &&= 2, 2, 'U+00A0 (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+00A0 (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x
|
||||||
|
&&=
|
||||||
|
2, 2, 'U+000A (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+000A (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x
|
||||||
|
&&=
|
||||||
|
2, 2, 'U+000D (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+000D (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x
&&=
2, 2, 'U+2028 (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+2028 (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x
&&=
2, 2, 'U+2029 (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+2029 (side effect)');
|
||||||
|
|
||||||
|
x = 1;
|
||||||
|
assert.sameValue(x
|
||||||
|
&&=
|
||||||
|
2, 2, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (expression)');
|
||||||
|
assert.sameValue(x, 2, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (side effect)');
|
|
@ -0,0 +1,18 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: >
|
||||||
|
Strict Mode - SyntaxError is thrown if the identifier arguments
|
||||||
|
appear as the LeftHandSideExpression of a Logical Assignment
|
||||||
|
operator(??=)
|
||||||
|
flags: [onlyStrict]
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
arguments ??= 20;
|
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: >
|
||||||
|
Strict Mode - SyntaxError is thrown if the identifier eval appear
|
||||||
|
as the LeftHandSideExpression of a Logical Assignment operator(??=)
|
||||||
|
flags: [onlyStrict]
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
eval ??= 20;
|
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators-static-semantics-early-errors
|
||||||
|
info: |
|
||||||
|
It is an early Syntax Error if AssignmentTargetType of
|
||||||
|
LeftHandSideExpression is invalid or strict.
|
||||||
|
description: Logical "??=" assignment with non-simple target
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
1 ??= 1;
|
|
@ -0,0 +1,58 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
info: |
|
||||||
|
White Space and Line Terminator between LeftHandSideExpression and "@="
|
||||||
|
or between "@=" and AssignmentExpression are allowed
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: Checking by evaluating expression "x[...]??=[...]y"
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
var x;
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x ??= 1, 1, 'U+0009 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+0009 (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x??=1, 1, 'U+000B (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000B (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x??=1, 1, 'U+000C (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000C (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x ??= 1, 1, 'U+0020 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+0020 (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x ??= 1, 1, 'U+00A0 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+00A0 (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x
|
||||||
|
??=
|
||||||
|
1, 1, 'U+000A (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000A (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x
|
||||||
|
??=
|
||||||
|
1, 1, 'U+000D (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000D (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x
??=
1, 1, 'U+2028 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+2028 (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x
??=
1, 1, 'U+2029 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+2029 (side effect)');
|
||||||
|
|
||||||
|
x = null;
|
||||||
|
assert.sameValue(x
|
||||||
|
??=
|
||||||
|
1, 1, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (side effect)');
|
|
@ -0,0 +1,18 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: >
|
||||||
|
Strict Mode - SyntaxError is thrown if the identifier arguments
|
||||||
|
appear as the LeftHandSideExpression of a Logical Assignment
|
||||||
|
operator(||=)
|
||||||
|
flags: [onlyStrict]
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
arguments ||= 20;
|
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: >
|
||||||
|
Strict Mode - SyntaxError is thrown if the identifier eval appear
|
||||||
|
as the LeftHandSideExpression of a Logical Assignment operator(||=)
|
||||||
|
flags: [onlyStrict]
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
eval ||= 20;
|
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
esid: sec-assignment-operators-static-semantics-early-errors
|
||||||
|
info: |
|
||||||
|
It is an early Syntax Error if AssignmentTargetType of
|
||||||
|
LeftHandSideExpression is invalid or strict.
|
||||||
|
description: Logical "||=" assignment with non-simple target
|
||||||
|
negative:
|
||||||
|
phase: parse
|
||||||
|
type: SyntaxError
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
$DONOTEVALUATE();
|
||||||
|
|
||||||
|
1 ||= 1;
|
|
@ -0,0 +1,58 @@
|
||||||
|
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
info: |
|
||||||
|
White Space and Line Terminator between LeftHandSideExpression and "@="
|
||||||
|
or between "@=" and AssignmentExpression are allowed
|
||||||
|
esid: sec-assignment-operators
|
||||||
|
description: Checking by evaluating expression "x[...]||=[...]y"
|
||||||
|
features: [logical-assignment-operators]
|
||||||
|
---*/
|
||||||
|
var x;
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x ||= 1, 1, 'U+0009 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+0009 (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x||=1, 1, 'U+000B (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000B (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x||=1, 1, 'U+000C (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000C (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x ||= 1, 1, 'U+0020 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+0020 (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x ||= 1, 1, 'U+00A0 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+00A0 (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x
|
||||||
|
||=
|
||||||
|
1, 1, 'U+000A (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000A (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x
|
||||||
|
||=
|
||||||
|
1, 1, 'U+000D (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+000D (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x
||=
1, 1, 'U+2028 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+2028 (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x
||=
1, 1, 'U+2029 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+2029 (side effect)');
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
assert.sameValue(x
|
||||||
|
||=
|
||||||
|
1, 1, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (expression)');
|
||||||
|
assert.sameValue(x, 1, 'U+0009U+000BU+000CU+0020U+00A0U+000AU+000DU+2028U+2029 (side effect)');
|
Loading…
Reference in New Issue