NAME
Backtrace::AsHTML - Displays back trace in HTML
SYNOPSIS
use Backtrace::AsHTML;
my $trace = Backtrace.new;
my $html = $trace.as-html;
DESCRIPTION
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.
METHODS
as-html
shows the fully back trace in HTML.
This method will be added into Backtrace class automatically when used this.
TODO
AUTHOR
moznion moznion@gmail.com
COPYRIGHT AND LICENSE
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.