Merge branch 'master' into fix-newlines

This commit is contained in:
Leo Balter 2019-11-11 14:40:28 -05:00 committed by GitHub
commit 206c0cbb55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 4 deletions

View File

@ -22,8 +22,10 @@ info: |
BitwiseORExpression
features: [coalesce-expression]
negative:
phase: early
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
0 && 0 ?? true;

View File

@ -22,8 +22,10 @@ info: |
BitwiseORExpression
features: [coalesce-expression]
negative:
phase: early
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
0 || 0 ?? true;

View File

@ -23,8 +23,10 @@ info: |
BitwiseORExpression
features: [coalesce-expression]
negative:
phase: early
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
0 ?? 0 && true;

View File

@ -23,8 +23,10 @@ info: |
BitwiseORExpression
features: [coalesce-expression]
negative:
phase: early
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
0 ?? 0 || true;