-
-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Support ES2024 and regexp v flag (#575)
* feat: Support ES2024 and regexp v flag * update acorn
- Loading branch information
Showing
15 changed files
with
505 additions
and
12 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
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
6 changes: 3 additions & 3 deletions
6
tests/fixtures/ecma-version/11/dynamic-import/invalid-new-import.result.js
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,6 +1,6 @@ | ||
export default { | ||
"index": 4, | ||
"index": 10, | ||
"lineNumber": 1, | ||
"column": 5, | ||
"message": "Cannot use new with import()" | ||
"column": 11, | ||
"message": "Unexpected token (" | ||
}; |
6 changes: 6 additions & 0 deletions
6
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-class-set-expression.result.js
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 13, | ||
"lineNumber": 1, | ||
"column": 14, | ||
"message": "Invalid regular expression: /[A&&&]/: Invalid character in character class" | ||
}; |
1 change: 1 addition & 0 deletions
1
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-class-set-expression.src.js
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
const re1 = /[A&&&]/v; |
6 changes: 6 additions & 0 deletions
6
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-string-negate.result.js
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 13, | ||
"lineNumber": 1, | ||
"column": 14, | ||
"message": "Invalid regular expression: /[^\\q{abc}]/: Negated character class may contain strings" | ||
}; |
1 change: 1 addition & 0 deletions
1
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-string-negate.src.js
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
const re1 = /[^\q{abc}]/v |
6 changes: 6 additions & 0 deletions
6
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-unicode-property.result.js
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 13, | ||
"lineNumber": 1, | ||
"column": 14, | ||
"message": "Invalid regular expression: /\\P{Basic_Emoji}/: Invalid property name" | ||
}; |
1 change: 1 addition & 0 deletions
1
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-unicode-property.src.js
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
const re1 = /\P{Basic_Emoji}/v |
6 changes: 6 additions & 0 deletions
6
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-v-flag.result.js
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export default { | ||
"index": 13, | ||
"lineNumber": 1, | ||
"column": 14, | ||
"message": "Invalid regular expression flag" | ||
}; |
1 change: 1 addition & 0 deletions
1
tests/fixtures/ecma-version/15/regexp-v-flag/invalid-regexp-v-flag.src.js
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
const re1 = /[A&&B]/uv; |
Oops, something went wrong.