Skip to content

Commit 5c8abfb

Browse files
committed
fix concat_atoms ?
With this, we can at least compile the second sub in lib/test_more.tcl
1 parent 25447e7 commit 5c8abfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Partcl/Actions.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ class Partcl::Actions is HLL::Actions {
279279
if $lastlit gt '' { @parts.push($lastlit); }
280280
my $past := @parts ?? @parts.shift !! '';
281281
while @parts {
282-
$past := QAST::Op.new( :op<call>, $past, @parts.shift, :name<concat>);
282+
$past := QAST::Op.new( :op<concat>, $past, @parts.shift);
283283
}
284284
$past;
285285
}

0 commit comments

Comments
 (0)