Skip to content

Commit

Permalink
Fix quoted private method calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jul 14, 2012
1 parent dda694c commit cfbb2fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/QPerl6/Actions.pm
Expand Up @@ -3031,8 +3031,9 @@ class QPerl6::Actions is HLL::Actions {
$past.name('dispatch:<!>');
}
elsif $<methodop><quote> {
my $name := $past.shift;
$past.unshift(QAST::WVal.new( :value($*PACKAGE) ));
$past.unshift($<methodop><quote>.ast);
$past.unshift($name);
$past.name('dispatch:<!>');
}
else {
Expand Down

0 comments on commit cfbb2fc

Please sign in to comment.