-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Reland "Let all early errors be SyntaxErrors.""
This reverts commit 89d93e3. Reason for revert: Breaks layout tests: https://ci.chromium.org/p/v8/builders/ci/V8-Blink%20Linux%2064/32929 Original change's description: > Reland "Let all early errors be SyntaxErrors." > > This is a reland of 99fd5b9 which includes a missed update to > test/test262/test262.status. > > Implement the spec change from the following TC39 PR: > tc39/ecma262#1527 > > Bug: v8:9326 > Change-Id: Ie3aac60db550e90fb648fc30886a05419fa41afe > TBR: [email protected] > Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1682989 > Reviewed-by: Sathya Gunasekaran <[email protected]> > Commit-Queue: Sathya Gunasekaran <[email protected]> > Cr-Commit-Position: refs/heads/master@{#62500} [email protected],[email protected],[email protected],[email protected] Change-Id: Ia56dcda6780a2b1249749e1e7978b35b5e33fbcf No-Presubmit: true No-Tree-Checks: true No-Try: true Bug: v8:9326 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1687678 Reviewed-by: Clemens Hammacher <[email protected]> Commit-Queue: Clemens Hammacher <[email protected]> Cr-Commit-Position: refs/heads/master@{#62509}
- Loading branch information
Showing
27 changed files
with
325 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,7 +162,6 @@ Rob Wu <[email protected]> | |
Robert Meijer <[email protected]> | ||
Robert Mustacchi <[email protected]> | ||
Robert Nagy <[email protected]> | ||
Ross Kirsling <[email protected]> | ||
Ruben Bridgewater <[email protected]> | ||
Ryan Dahl <[email protected]> | ||
Sakthipriyan Vairamani (thefourtheye) <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*%(basename)s:5: SyntaxError: Invalid left-hand side in assignment | ||
*%(basename)s:5: ReferenceError: Invalid left-hand side in assignment | ||
function f() { new.target = 5 } | ||
^^^^^^^^^^ | ||
SyntaxError: Invalid left-hand side in assignment | ||
ReferenceError: Invalid left-hand side in assignment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*%(basename)s:5: SyntaxError: Invalid left-hand side expression in postfix operation | ||
*%(basename)s:5: ReferenceError: Invalid left-hand side expression in postfix operation | ||
function f() { new.target++ } | ||
^^^^^^^^^^ | ||
SyntaxError: Invalid left-hand side expression in postfix operation | ||
ReferenceError: Invalid left-hand side expression in postfix operation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*%(basename)s:5: SyntaxError: Invalid left-hand side expression in prefix operation | ||
*%(basename)s:5: ReferenceError: Invalid left-hand side expression in prefix operation | ||
function f() { ++new.target } | ||
^^^^^^^^^^ | ||
SyntaxError: Invalid left-hand side expression in prefix operation | ||
ReferenceError: Invalid left-hand side expression in prefix operation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.