Skip to content

Instantly share code, notes, and snippets.

@rocky
Created March 13, 2012 02:36
Show Gist options
  • Save rocky/2026233 to your computer and use it in GitHub Desktop.
Save rocky/2026233 to your computer and use it in GitHub Desktop.
Enbugger bug1
#!/usr/bin/env perl
eval <<'EOE';
use Enbugger;
Enbugger->load_debugger('perl5db');
Enbugger->stop;
$x = 1;
$y = 2;
EOE
@rocky
Copy link
Author

rocky commented Mar 13, 2012

A run of the above:

$ ./enbugger-bug1.pl 

Loading DB routines from perl5db.pl version 1.32
  DB<1> l

  DB<2> b
Line 4 not breakable.

Breakpoints and lines for the eval string haven't been recorded in @DB::dbline.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment