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 3d13d53 commit fab64fcCopy full SHA for fab64fc
STD.pm6
@@ -3433,8 +3433,15 @@ grammar P6 is STD {
3433
}
3434
3435
3436
- token postcircumfix:sym<{ }>
3437
- { :dba('subscript') '{' ~ '}' <semilist> <O(|%methodcall)> <.curlycheck> }
+ token postcircumfix:sym<{ }> {
+ :temp $*CURLEX;
3438
+ :dba('subscript')
3439
+ <.newlex>
3440
+ # <.finishlex> # XXX not sure if we need this
3441
+ '{' ~ '}' <semilist> <O(|%methodcall)>
3442
+ <.checkyada>
3443
+ <.curlycheck>
3444
+ }
3445
3446
token postcircumfix:sym«< >» {
3447
:my $pos;
0 commit comments