Class: Byebug::CommandProcessor::State

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/byebug/processors/command_processor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(commands, context, display, file, interface, line) ⇒ State

Returns a new instance of State.



232
233
234
235
236
# File 'lib/byebug/processors/command_processor.rb', line 232

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

Instance Attribute Details

#commandsObject

Returns the value of attribute commands.



229
230
231
# File 'lib/byebug/processors/command_processor.rb', line 229

def commands
  @commands
end

#contextObject

Returns the value of attribute context.



229
230
231
# File 'lib/byebug/processors/command_processor.rb', line 229

def context
  @context
end

#displayObject

Returns the value of attribute display.



229
230
231
# File 'lib/byebug/processors/command_processor.rb', line 229

def display
  @display
end

#fileObject

Returns the value of attribute file.



229
230
231
# File 'lib/byebug/processors/command_processor.rb', line 229

def file
  @file
end

#frame_posObject

Returns the value of attribute frame_pos.



229
230
231
# File 'lib/byebug/processors/command_processor.rb', line 229

def frame_pos
  @frame_pos
end

#interfaceObject

Returns the value of attribute interface.



230
231
232
# File 'lib/byebug/processors/command_processor.rb', line 230

def interface
  @interface
end

#lineObject

Returns the value of attribute line.



230
231
232
# File 'lib/byebug/processors/command_processor.rb', line 230

def line
  @line
end

#previous_lineObject

Returns the value of attribute previous_line.



230
231
232
# File 'lib/byebug/processors/command_processor.rb', line 230

def previous_line
  @previous_line
end

Instance Method Details

#locationObject



249
250
251
252
253
254
255
# File 'lib/byebug/processors/command_processor.rb', line 249

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

#proceedObject



245
246
247
# File 'lib/byebug/processors/command_processor.rb', line 245

def proceed
  @proceed = true
end

#proceed?Boolean

Returns:

  • (Boolean)


241
242
243
# File 'lib/byebug/processors/command_processor.rb', line 241

def proceed?
  @proceed
end