Skip to content

Commit

Permalink
Fix problem in Compiler.verbose-config
Browse files Browse the repository at this point in the history
Spotted by Will Coleda++
  • Loading branch information
lizmat committed Dec 30, 2020
1 parent 4384fc5 commit ed6e2c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.c/Compiler.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Compiler does Systemic {
my %config;
my $clone := nqp::clone($items);
while $clone {
my ($main,$key,$value) = nqp::shift($clone).split(<:: =>);
my ($main,$key,$value) = nqp::shift_s($clone).split(<:: =>);
%config.AT-KEY($main).AT-KEY($key) = $value
}

Expand Down

1 comment on commit ed6e2c8

@JJ
Copy link
Collaborator

@JJ JJ commented on ed6e2c8 Jan 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe add a test for that feature in Rakudo?

Please sign in to comment.