Skip to content

Commit 84ca780

Browse files
committed
parse ...^ correctly
oops, was parsing it as ... and then prefix ^
1 parent 0a2b4bd commit 84ca780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

STD.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3915,7 +3915,7 @@ grammar P6 is STD {
39153915
{ <sym> <O(|%list_infix)> }
39163916

39173917
token infix:sym<...>
3918-
{ <sym> <O(|%list_infix)> }
3918+
{ <sym> <O(|%list_infix)> '^'? }
39193919

39203920
token term:sym<...>
39213921
{ <sym> <args>? <O(|%list_prefix)> }

0 commit comments

Comments
 (0)