Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #81 from kanatohodets/master
Track change in $*VM name access
  • Loading branch information
Tadeusz Sośnierz committed May 16, 2014
2 parents abafd49 + d47e254 commit 05af361
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 05af361

Please sign in to comment.