Skip to content

Commit

Permalink
One more tweak and seems we have item assignment working now, with al…
Browse files Browse the repository at this point in the history
…l existing tests passing. :-)
  • Loading branch information
jnthn committed Mar 22, 2010
1 parent 53707fb commit becc7e0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Perl6/Grammar.pm
Expand Up @@ -1085,6 +1085,12 @@ INIT {
Perl6::Grammar.O(':prec<c=>, :assoc<left>', '%loose_or');
}

method EXPR($preclim = '') {
# Override this so we can set $*LEFTSIGIL.
my $*LEFTSIGIL := '';
HLL::Grammar::EXPR(self, $preclim);
}

token prefixish {
[
| <OPER=prefix>
Expand Down

0 comments on commit becc7e0

Please sign in to comment.