Skip to content

Commit

Permalink
Possibly fixed the error
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Jan 5, 2024
1 parent a959c70 commit 34be3f0
Show file tree
Hide file tree
Showing 4 changed files with 3,115 additions and 3,140 deletions.
2 changes: 1 addition & 1 deletion grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ module.exports = grammar({
),

raw_string_literal: ($) =>
seq($.raw_string_start, repeat($.string_body), $.raw_string_end),
seq($.raw_string_start, optional($.string_body), $.raw_string_end),

external_command: ($) =>
seq(
Expand Down
15 changes: 10 additions & 5 deletions src/grammar.json
Original file line number Diff line number Diff line change
Expand Up @@ -1331,11 +1331,16 @@
"name": "raw_string_start"
},
{
"type": "REPEAT",
"content": {
"type": "SYMBOL",
"name": "string_body"
}
"type": "CHOICE",
"members": [
{
"type": "SYMBOL",
"name": "string_body"
},
{
"type": "BLANK"
}
]
},
{
"type": "SYMBOL",
Expand Down
Loading

0 comments on commit 34be3f0

Please sign in to comment.