Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
document Backtrace
- Loading branch information
Showing
2 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| =begin pod | ||
| =TITLE class Backtrace | ||
| class Backtrace is List { ... } | ||
| A backtrace shows the dynamic call stack, usually leading up to a point | ||
| where an exception was thrown. | ||
| It is a List of L<Backtrace::Frame> objects. Its default stringification | ||
| excludes backtrace frames that are deemed unnecessary or confusing, for | ||
| example routines like C<&die> are hidden by default. | ||
| =head1 Methods | ||
| =head2 new | ||
| proto method new(*@, *%) {*} | ||
| multi method new() | ||
| Creates a new backtrace, using its calling location as the origin of the | ||
| backtrace. | ||
| =head2 Str | ||
| multi method Str(Backtrace:D:) returns Str:D: | ||
| Returns a concise string representation of the backtrace, omitting | ||
| routines marked as C<is hidden_from_backtrace>, and at the discretion of | ||
| the implementor, also some routines from the setting. | ||
| =head2 full | ||
| multi method full(Backtrace:D:) returns Str:D: | ||
| Returns a full string representation of the backtrace, including hidden | ||
| frames, compiler-specific frames and those from the setting. | ||
| =end pod |