new_breakpoint

in lib/pry-byebug/commands/breakpoint.rb [92:100]


    def new_breakpoint
      place = args.shift
      condition = args.join(" ") if args.shift == "if"

      bp = add_breakpoint(place, condition)

      print_full_breakpoint(bp)
    end