Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix nativecall tests; lizmat++
  • Loading branch information
Mouq committed Mar 7, 2015
1 parent 5acaa4a commit 161550a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.nqp
Expand Up @@ -2567,7 +2567,7 @@ class Perl6::Actions is HLL::Actions does STDActions {
if $*SOFT {
$*W.find_symbol(['&infix:<does>'])($code, $*W.find_symbol(['SoftRoutine']));
}
elsif !nqp::can($code, 'postcircumfix:<( )>') {
elsif !nqp::can($code, 'invoke') && !nqp::can($code, 'postcircumfix:<( )>') {
my $phasers :=
nqp::getattr($code,$*W.find_symbol(['Block']),'$!phasers');
if nqp::isnull($phasers) || !nqp::p6bool($phasers) {
Expand Down

0 comments on commit 161550a

Please sign in to comment.