Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
align code vertically, no functional changes
  • Loading branch information
moritz committed Nov 2, 2011
1 parent cb63745 commit 430c564
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Perl6/Actions.pm
Expand Up @@ -1212,10 +1212,10 @@ class Perl6::Actions is HLL::Actions {
}

method variable_declarator($/) {
my $past := $<variable>.ast;
my $sigil := $<variable><sigil>;
my $past := $<variable>.ast;
my $sigil := $<variable><sigil>;
my $twigil := $<variable><twigil>[0];
my $name := ~$sigil ~ ~$twigil ~ ~$<variable><desigilname>;
my $name := ~$sigil ~ ~$twigil ~ ~$<variable><desigilname>;
if $<variable><desigilname> && $*ST.cur_lexpad().symbol($name) {
$/.CURSOR.panic("Redeclaration of symbol ", $name);
}
Expand Down

0 comments on commit 430c564

Please sign in to comment.