Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[World] avoid a lookup for which we already have a variable
  • Loading branch information
moritz committed Apr 10, 2012
1 parent 32c674e commit edfd0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/World.pm
Expand Up @@ -702,7 +702,7 @@ class Perl6::World is HLL::World {

# Set yada flag if needed.
if $yada {
my $rtype := self.find_symbol(['Routine']);
my $rtype := $routine_type;
nqp::bindattr_i($code, $rtype, '$!yada', 1);
}

Expand Down

0 comments on commit edfd0f2

Please sign in to comment.