We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fab963 commit 21af32aCopy full SHA for 21af32a
src/HLL/Grammar.pm
@@ -32,7 +32,6 @@ grammar HLL::Grammar {
32
# Return <termish> if it matches, <nullterm_alt> otherwise.
33
method nulltermish() { self.termish || self.nullterm_alt }
34
35
- # token quote_EXPR is in src/cheats/hll-grammar.pir
36
token quote_delimited {
37
<starter> <quote_atom>* <stopper>
38
}
@@ -41,7 +40,8 @@ grammar HLL::Grammar {
41
40
<!stopper>
42
[
43
| <quote_escape>
44
- | [ <-quote_escape-stopper> ]+
+ | [ <-quote_escape-stopper-starter> ]+
+ | <starter> <quote_atom>* <stopper>
45
]
46
47
0 commit comments