class Byebug::CommandProcessor::State

def initialize(commands, context, display, file, interface, line)

def initialize(commands, context, display, file, interface, line)
  @commands, @context, @display = commands, context, display
  @file, @frame_pos, @interface = file, 0, interface
  @line, @prev_line, @proceed = line, nil, false
end

def location

def location
  path = self.class.canonic_file(@file)
  loc = "#{path} @ #{@line}\n"
  loc += "#{get_line(@file, @line)}\n" unless
    ['(irb)', '-e'].include? @file
  loc
end

def proceed

def proceed
  @proceed = true
end

def proceed?

def proceed?
  @proceed
end