Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add a missing decont.
Apparently moar does some magic which makes us not need this, but jvm doesn't.
  • Loading branch information
peschwa committed Oct 23, 2015
1 parent c8c4946 commit 9bc5a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Block.pm
Expand Up @@ -43,7 +43,7 @@ my class Block { # declared in BOOTSTRAP
}

method assuming(Block:D $self: |primers) {
my $sig = nqp::getattr($self,Code,'$!signature');
my $sig = nqp::getattr(nqp::decont($self), Code, '$!signature');

# A ::() that does not throw. Also does not need to deal
# with chunks or sigils.
Expand Down

0 comments on commit 9bc5a0a

Please sign in to comment.