Navigation Menu

Skip to content

Commit

Permalink
Fix RT #130979
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Mar 11, 2017
1 parent 1754dc5 commit 27dc7b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Perl6/World.nqp
Expand Up @@ -1110,7 +1110,9 @@ class Perl6::World is HLL::World {
method arglist($/) {
my $arglist;
if $<arglist><EXPR> -> $expr {
$arglist := self.compile_time_evaluate($/,$expr.ast).List.FLATTENABLE_LIST;
if self.compile_time_evaluate($/,$expr.ast) -> $result {
$arglist := $result.List.FLATTENABLE_LIST;
}
}
$arglist;
}
Expand Down

0 comments on commit 27dc7b1

Please sign in to comment.