Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix for recent rakudo $/ read-only-ness fix
  • Loading branch information
timo committed Nov 1, 2017
1 parent 53ce000 commit b460d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/YAMLish.pm6
Expand Up @@ -450,8 +450,8 @@ grammar Grammar {
method space($/) {
make ~$/;
}
method single-quoted($/) {
make $<value>.Str.subst(/<Grammar::foldable-whitespace>/, ' ', :g).subst("''", "'", :g);
method single-quoted($_) {
.make: .<value>.Str.subst(/<Grammar::foldable-whitespace>/, ' ', :g).subst("''", "'", :g);
}
method single-key($/) {
make $<value>.Str.subst("''", "'", :g);
Expand Down

1 comment on commit b460d9b

@Leont
Copy link
Owner

@Leont Leont commented on b460d9b Nov 2, 2017

Choose a reason for hiding this comment

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

@timo I don't quite see it yet, could you explain to me why this is necessary?

Please sign in to comment.