Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a pirop signature (nothing to do with this branch, just spotted it).
  • Loading branch information
jnthn committed Feb 26, 2012
1 parent 5fb6c0b commit d3bd66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.pm
Expand Up @@ -4126,7 +4126,7 @@ class Perl6::Actions is HLL::Actions {
# We tell Parrot that we'll have all args in the call_sig so it won't
# do its own arg processing. We also add a call to bind the signature.
$block[0].push(PAST::Var.new( :name('call_sig'), :scope('parameter'), :call_sig(1) ));
$block[0].push(PAST::Op.new( :pirop('bind_signature vP') ));
$block[0].push(PAST::Op.new( :pirop('bind_signature v') ));

$block;
}
Expand Down

0 comments on commit d3bd66a

Please sign in to comment.