Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Track change in $*VM name access
  • Loading branch information
kanatohodets committed May 13, 2014
1 parent abafd49 commit d47e254
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Panda/Common.pm
Expand Up @@ -30,13 +30,13 @@ sub withp6lib(&what) is export {
}

sub compsuffix is export {
$*VM<name> eq 'moar'
$*VM.name eq 'moar'
?? 'moarvm'
!! comptarget
}

sub comptarget is export {
given $*VM<name> {
given $*VM.name {
when 'parrot' {
return 'pir';
}
Expand Down

0 comments on commit d47e254

Please sign in to comment.