diff --git a/src/Raku/ast/literals.rakumod b/src/Raku/ast/literals.rakumod index 7160a5c6ff3..f07e93a253c 100644 --- a/src/Raku/ast/literals.rakumod +++ b/src/Raku/ast/literals.rakumod @@ -312,6 +312,12 @@ class RakuAST::QuotedString is RakuAST::ColonPairish is RakuAST::Term False } + method dump-extras(int $indent) { + $!processors && nqp::elems($!processors) + ?? nqp::x(' ', $indent) ~ 'postprocessors: ' ~ nqp::join(', ', $!processors) ~ "\n" + !! '' + } + method IMPL-EXPR-QAST(RakuAST::IMPL::QASTContext $context) { # If we can constant fold it, just produce the constant. my $literal-value := self.literal-value;