See Original text in context
method is-hidden(Backtrace::Frame:D: --> Bool:D)
Returns True if the frame is marked as hidden with the is hidden-from-backtrace trait.
True
is hidden-from-backtrace
my $bt = Backtrace.new;my $btf = $bt[0];say $btf.is-hidden;