===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
libtest-nobreakpoints-perl-0.15/README.mkdn-24-
libtest-nobreakpoints-perl-0.15/README.mkdn:25:I love soft breakpoints (`$DB::single = 1`) in the Perl debugger. 
libtest-nobreakpoints-perl-0.15/README.mkdn-26-Unfortunately, I have a habit of putting them in my code during development
##############################################
libtest-nobreakpoints-perl-0.15/README.mkdn-30-Test::NoBreakpoints checks that files contain neither the string
libtest-nobreakpoints-perl-0.15/README.mkdn:31:`$DB::single = 1` nor `$DB::signal = 1`.  By adding such a test to all my
libtest-nobreakpoints-perl-0.15/README.mkdn-32-modules, I swear less and presumably lighten the load on the CPAN in some
##############################################
libtest-nobreakpoints-perl-0.15/README.mkdn-138-walk the opcode tree to find places where the breakpoint is set. 
libtest-nobreakpoints-perl-0.15/README.mkdn:139:B::FindAmpersand does something similar to this to find use of the `$&` in
libtest-nobreakpoints-perl-0.15/README.mkdn-140-regular expressions, so this is probably the direction I'm going to head in.