print_full_breakpoint

in lib/pry-byebug/helpers/breakpoints.rb [29:47]


      def print_full_breakpoint(breakpoint)
        header = "Breakpoint #{breakpoint.id}:"
        status = breakpoint.enabled? ? "Enabled" : "Disabled"
        code = breakpoint.source_code.with_line_numbers.to_s
        condition = if breakpoint.expr
                      "#{bold('Condition:')} #{breakpoint.expr}\n"
                    else
                      ""
                    end

        output.puts <<-BREAKPOINT.gsub(/ {8}/, "")

          

          

        BREAKPOINT
      end