Skip to content

Commit 9416e3b

Browse files
committed
Remove parasithic lookaheads
According to jnthn leftovers from when the LTM wasn't too smart
1 parent a67c607 commit 9416e3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NQP/Grammar.nqp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -590,15 +590,15 @@ grammar NQP::Grammar is HLL::Grammar {
590590
]
591591

592592
[
593-
| <?[(]> <args>
593+
| <args>
594594
| ':' \s <args=.arglist>
595595
]**0..1
596596
}
597597

598598
token term:sym<self> { <sym> » }
599599

600600
token term:sym<identifier> {
601-
<deflongname> <?[(]> <args>
601+
<deflongname> <args>
602602
}
603603

604604
token term:sym<name> {

0 commit comments

Comments
 (0)