Skip to content

Commit

Permalink
Quoted lists should act like ('1', '2', '3') instead of '1', '2', '3'
Browse files Browse the repository at this point in the history
(especially in function calls).
  • Loading branch information
pmichaud committed Feb 25, 2010
1 parent c2691c0 commit cf150fc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Perl6/Actions.pm
Expand Up @@ -1885,6 +1885,7 @@ method quote_EXPR($/) {
if +@words > 1 {
$past := PAST::Op.new( :name('&infix:<,>'), :node($/) );
for @words { $past.push($_); }
$past := PAST::Stmts.new($past);
}
}
}
Expand Down

0 comments on commit cf150fc

Please sign in to comment.