Skip to content

Commit

Permalink
Fix a thinko in qualified method dispatcher
Browse files Browse the repository at this point in the history
Which fixes a test regression we got having moved from the spesh plugin.
  • Loading branch information
jnthn committed Jul 1, 2020
1 parent 5d9f53f commit 9d0d41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/moar/dispatchers.nqp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ nqp::dispatch('boot-syscall', 'dispatcher-register', 'raku-meth-call-qualified',
for ($caller-type, $obj.WHAT) {
if nqp::istype($_, $type) {
$meth := $_.HOW.find_method_qualified($_, $type, $name);
last unless nqp::isconcrete($meth);
last if nqp::isconcrete($meth);
}
}

Expand Down

0 comments on commit 9d0d41a

Please sign in to comment.