Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix RT #69204, allow $foo .= "bar"()
  • Loading branch information
FROGGS committed Oct 3, 2015
1 parent 0ac5dbc commit 98d9b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.nqp
Expand Up @@ -7651,7 +7651,7 @@ Compilation unit '$file' contained the following violations:
}

sub make_dot_equals($target, $call) {
$call.unshift($*W.add_string_constant($call.name));
$call.unshift($*W.add_string_constant($call.name)) if $call.name || !$call.list;
$call.unshift($target);
$call.name('dispatch:<.=>');
$call.op('callmethod');
Expand Down

0 comments on commit 98d9b87

Please sign in to comment.