Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Better register (re-)usage in SC events.
  • Loading branch information
pmichaud committed Jun 14, 2011
1 parent 173e019 commit 28995b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Perl6/SymbolTable.pm
Expand Up @@ -967,8 +967,8 @@ class Perl6::SymbolTable is HLL::Compiler::SerializationContextBuilder {
my $des := PAST::Stmts.new();
my $fix := PAST::Stmts.new();
for self.event_stream() {
$des.push(PAST::Stmts.new($_.deserialize_past())) if pir::defined($_.deserialize_past());
$fix.push(PAST::Stmts.new($_.fixup_past())) if pir::defined($_.fixup_past());
$des.push(PAST::Stmt.new($_.deserialize_past())) if pir::defined($_.deserialize_past());
$fix.push(PAST::Stmt.new($_.fixup_past())) if pir::defined($_.fixup_past());
}
make PAST::Op.new(
:pasttype('if'),
Expand Down

0 comments on commit 28995b9

Please sign in to comment.