mirror of https://github.com/tc39/test262.git
Fix failure phase in coalesce tests (#2415)
This commit is contained in:
parent
1bc193528b
commit
9bb90d1a34
|
@ -22,8 +22,10 @@ info: |
|
|||
BitwiseORExpression
|
||||
features: [coalesce-expression]
|
||||
negative:
|
||||
phase: early
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
0 && 0 ?? true;
|
||||
$DONOTEVALUATE();
|
||||
|
||||
0 && 0 ?? true;
|
||||
|
|
|
@ -22,8 +22,10 @@ info: |
|
|||
BitwiseORExpression
|
||||
features: [coalesce-expression]
|
||||
negative:
|
||||
phase: early
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
0 || 0 ?? true;
|
||||
$DONOTEVALUATE();
|
||||
|
||||
0 || 0 ?? true;
|
||||
|
|
|
@ -23,8 +23,10 @@ info: |
|
|||
BitwiseORExpression
|
||||
features: [coalesce-expression]
|
||||
negative:
|
||||
phase: early
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
0 ?? 0 && true;
|
||||
$DONOTEVALUATE();
|
||||
|
||||
0 ?? 0 && true;
|
||||
|
|
|
@ -23,8 +23,10 @@ info: |
|
|||
BitwiseORExpression
|
||||
features: [coalesce-expression]
|
||||
negative:
|
||||
phase: early
|
||||
phase: parse
|
||||
type: SyntaxError
|
||||
---*/
|
||||
|
||||
0 ?? 0 || true;
|
||||
$DONOTEVALUATE();
|
||||
|
||||
0 ?? 0 || true;
|
||||
|
|
Loading…
Reference in New Issue