Skip to content

Commit

Permalink
fix signature of CompUnit.new
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Aug 3, 2014
1 parent 3a140f0 commit 0ce18d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/CompUnit.pm
Expand Up @@ -15,7 +15,7 @@ class CompUnit {
my $default-from = 'Perl6';
my %instances;

method new( $path is copy, :$name, :$extension, :$from = $default-from ) {
method new( $path is copy, :$name is copy, :$extension is copy, :$from = $default-from ) {

# remove precomp extension if a precomp file
my $precomp-ext = $*VM.precomp-ext;
Expand Down

0 comments on commit 0ce18d6

Please sign in to comment.