[Bps-public-commit] r15032 - in Carp-REPL: .

sartak at bestpractical.com sartak at bestpractical.com
Tue Aug 12 06:48:40 EDT 2008


Author: sartak
Date: Tue Aug 12 06:48:40 2008
New Revision: 15032

Modified:
   Carp-REPL/   (props changed)
   Carp-REPL/Changes
   Carp-REPL/lib/Devel/REPL/Plugin/Carp/REPL.pm

Log:
 r69306 at onn:  sartak | 2008-08-12 06:29:14 -0400
 Doc


Modified: Carp-REPL/Changes
==============================================================================
--- Carp-REPL/Changes	(original)
+++ Carp-REPL/Changes	Tue Aug 12 06:48:40 2008
@@ -1,6 +1,9 @@
 Revision history for Carp-REPL
 
 0.13
+        Fix longstanding "not nested deeply enough" bug
+            Caused by not skipping over "eval" frames
+        Move a lot of code into a new dist, Devel::StackTrace::WithLexicals
 
 0.12    Fri May 16 11:17:55 2008
         :l(ist) command for printing source code

Modified: Carp-REPL/lib/Devel/REPL/Plugin/Carp/REPL.pm
==============================================================================
--- Carp-REPL/lib/Devel/REPL/Plugin/Carp/REPL.pm	(original)
+++ Carp-REPL/lib/Devel/REPL/Plugin/Carp/REPL.pm	Tue Aug 12 06:48:40 2008
@@ -19,6 +19,7 @@
             ignore_class => ['Carp::REPL', __PACKAGE__],
         );
 
+        # skip all the Moose metaclass frames
         shift @{ $stacktrace->{raw} }
             until @{ $stacktrace->{raw} } == 0
                || $stacktrace->{raw}[0]{caller}[3] eq 'Carp::REPL::repl';



More information about the Bps-public-commit mailing list