Legend:
- Unmodified
- Added
- Removed
-
src/perl6/Cursor.pmc
r22486 r22498 1947 1947 $self->{_reduced} = $tag; 1948 1948 if ($::ACTIONS) { 1949 eval { $::ACTIONS->$tag($self) } 1949 eval { $::ACTIONS->$tag($self) }; 1950 warn $@ if $@ and not $@ =~ /locate/; 1950 1951 } 1951 1952 $self->deb("REDUCE $tag from $F to $P") if $DEBUG & DEBUG::matchers; -
src/perl6/STD.pm
r22486 r22498 3188 3188 :my $i; 3189 3189 $i = <identifier> <args( $¢.is_type($i.text) )> 3190 {{ %ROUTINES{$i.text} ~= $¢.lineof($¢.pos) ~ ' ' }}3190 {{ $<identifier> = $i; %ROUTINES{$i.text} ~= $¢.lineof($¢.pos) ~ ' ' }} 3191 3191 } 3192 3192 … … 3526 3526 @termstack[0]<_to> = $here.pos; 3527 3527 } 3528 @termstack;3528 self._MATCHIFYr("EXPR", @termstack); 3529 3529 } 3530 3530 -
src/perl6/gimme5
r22486 r22498 352 352 push \@gather, \$C->\$try(\@_); 353 353 } 354 \$self->_MATCHIFY("$ NAME", \@gather);354 \$self->_MATCHIFY("$name", \@gather); 355 355 }; 356 356 if (\$@) {
