Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix AST.Str for operator macros
  • Loading branch information
moritz committed Sep 10, 2014
1 parent d1dd37e commit a843a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.nqp
Expand Up @@ -4912,7 +4912,7 @@ class Perl6::Actions is HLL::Actions does STDActions {
make expand_macro($macro, $name, $/, sub () {
my @argument_asts := [];
for @($/) {
add_macro_arguments($_.ast, @argument_asts, '');
add_macro_arguments($_.ast, @argument_asts, ~$_);
}
return @argument_asts;
});
Expand Down

0 comments on commit a843a4a

Please sign in to comment.