Skip to content

Commit a4be1ab

Browse files
committed
accidental alpha ident change
1 parent f58ed70 commit a4be1ab

File tree

3 files changed

+466510
-481465
lines changed

3 files changed

+466510
-481465
lines changed

grammar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ module.exports = grammar({
11891189
$._backtick_identifier,
11901190
),
11911191

1192-
_alpha_identifier: $ => /[\p{L}_][\p{L}\p{Nd}_]*/,
1192+
_alpha_identifier: $ => /[a-zA-Z_][a-zA-Z_0-9]*/,
11931193

11941194
_backtick_identifier: $ => /`[^\r\n`]+`/,
11951195

src/grammar.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6077,7 +6077,7 @@
60776077
},
60786078
"_alpha_identifier": {
60796079
"type": "PATTERN",
6080-
"value": "[\\p{L}_][\\p{L}\\p{Nd}_]*"
6080+
"value": "[a-zA-Z_][a-zA-Z_0-9]*"
60816081
},
60826082
"_backtick_identifier": {
60836083
"type": "PATTERN",

0 commit comments

Comments
 (0)