[svn:parrot] r44883 - branches/ops_pct/compilers/opsc/src/Ops/Compiler
bacek at svn.parrot.org
bacek at svn.parrot.org
Thu Mar 11 20:43:23 UTC 2010
Author: bacek
Date: Thu Mar 11 20:43:21 2010
New Revision: 44883
URL: https://trac.parrot.org/parrot/changeset/44883
Log:
Add ';' after implicit goto_next
Modified:
branches/ops_pct/compilers/opsc/src/Ops/Compiler/Actions.pm
Modified: branches/ops_pct/compilers/opsc/src/Ops/Compiler/Actions.pm
==============================================================================
--- branches/ops_pct/compilers/opsc/src/Ops/Compiler/Actions.pm Thu Mar 11 18:31:31 2010 (r44882)
+++ branches/ops_pct/compilers/opsc/src/Ops/Compiler/Actions.pm Thu Mar 11 20:43:21 2010 (r44883)
@@ -96,6 +96,10 @@
);
$goto_next<is_next> := 1;
$op.push($goto_next);
+ $op.push(PAST::Op.new(
+ :pasttype<inline>,
+ :inline<;>
+ ));
}
my $past := PAST::Stmts.new(
More information about the parrot-commits
mailing list