Help language development. Donate to The Perl Foundation
Backtrace::AsHTML - Displays back trace in HTML
use Backtrace::AsHTML;
my $trace = Backtrace.new;
my $html = $trace.as-html;
Backtrace::AsHTML adds as-html
method to Backtrace which displays the back trace in beautiful HTML, with code snippet context.
This library is inspired by Devel::StackTrace::AsHTML of perl5 and much of code is taken from that.
as-html
as-html
shows the fully back trace in HTML.
This method will be added into Backtrace class automatically when used this.
show lexical variables for each frames (How?)
show arguments for each frames? (How??)
moznion [email protected]
Copyright 2015 moznion
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.
And license of the original perl5's Devel::StackTrace::AsHTML is
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.