Skip to content

Commit

Permalink
fix(grammar): adapt to upstream regex change
Browse files Browse the repository at this point in the history
  • Loading branch information
clason committed Apr 20, 2024
1 parent f4b3cbc commit 930c43a
Show file tree
Hide file tree
Showing 6 changed files with 569 additions and 193 deletions.
2 changes: 1 addition & 1 deletion grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ module.exports = grammar({
/[0-7]{1,3}/,
/x[0-9a-fA-F]{2}/,
/u[0-9a-fA-F]{4}/,
/u{[0-9a-fA-F]+}/,
/u\{[0-9a-fA-F]+\}/,
))),

number: _ => {
Expand Down
3 changes: 1 addition & 2 deletions src/grammar.json
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@
},
{
"type": "PATTERN",
"value": "u{[0-9a-fA-F]+}"
"value": "u\\{[0-9a-fA-F]+\\}"
}
]
}
Expand Down Expand Up @@ -786,4 +786,3 @@
"inline": [],
"supertypes": []
}

Loading

0 comments on commit 930c43a

Please sign in to comment.