Skip to content

Commit

Permalink
RakuAST: give D<> same semantics as M<> and X<>
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jul 12, 2023
1 parent 794d89a commit 7b6c81c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.c/RakuAST/Fixups.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ augment class RakuAST::Doc::Markup {
if $letter eq 'L' {
self.set-meta($_) with self!extract-meta;
}
elsif $letter eq 'M' | 'X' {
elsif $letter eq 'D' | 'M' | 'X' {
if self!extract-meta -> $meta {
self.add-meta(.trim.split(',')>>.trim.List)
for $meta.split(';');
Expand Down

0 comments on commit 7b6c81c

Please sign in to comment.