Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix an interpolation bug.
  • Loading branch information
jnthn committed Nov 20, 2011
1 parent b312db8 commit 0786d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.pm
Expand Up @@ -3744,7 +3744,7 @@ class Perl6::Actions is HLL::Actions {
if $lastlit gt '' {
@parts.push($*ST.add_string_constant($lastlit));
}
@parts.push($ast);
@parts.push(PAST::Op.new( :pasttype('callmethod'), :name('Stringy'), $ast ));
$lastlit := '';
}
}
Expand Down

0 comments on commit 0786d96

Please sign in to comment.