Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove <aliased> flag.
  • Loading branch information
pmichaud committed Nov 14, 2009
1 parent 7aa09d7 commit 690ec78
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Regex/P6Regex/Actions.pm
Expand Up @@ -546,8 +546,7 @@ sub backmod($ast, $backmod) {
}

sub subrule_alias($past, $name) {
if $past<aliased> { $name := $name ~ '=' ~ $past.name; }
$past.name($name);
if $past.name gt '' { $past.name( $name ~ '=' ~ $past.name ); }
else { $past.name($name); }
$past.subtype('capture');
$past<aliased> := 1;
}

0 comments on commit 690ec78

Please sign in to comment.