Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Allow for :from<JVM>
  • Loading branch information
lizmat committed Jul 8, 2014
1 parent 6fab386 commit 3062bc1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/CompUnitRepo/Local/File.pm
Expand Up @@ -5,7 +5,8 @@ class CompUnitRepo::Local::File does CompUnitRepo::Locally {
my %extensions =
Perl6 => [$precomp,'pm6','pm'],
Perl5 => [$precomp,'pm5','pm'],
NQP => [$precomp,'nqp'];
NQP => [$precomp,'nqp'],
JVM => [$precomp];
my $anyextensions = any($precomp,<pm6 pm5 pm nqp>);

method install($source, $from?) { ... }
Expand Down

0 comments on commit 3062bc1

Please sign in to comment.