Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix .^isa bug spotted by tadzik++/pmichaud++; was missing decont, as …
…guessed.
  • Loading branch information
jnthn committed Jul 7, 2011
1 parent 8d597c2 commit b9db729
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Metamodel/ClassHOW.pm
Expand Up @@ -135,7 +135,7 @@ class Perl6::Metamodel::ClassHOW
method isa($obj, $type) {
my $decont := pir::nqp_decontainerize__PP($type);
for self.mro($obj) {
if $_ =:= $decont { return 1 }
if pir::nqp_decontainerize__PP($_) =:= $decont { return 1 }
}
0
}
Expand Down

0 comments on commit b9db729

Please sign in to comment.