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.



222
223
224
225
226
# File 'lib/byebug/processors/command_processor.rb', line 222

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.



219
220
221
# File 'lib/byebug/processors/command_processor.rb', line 219

def commands
  @commands
end

#contextObject

Returns the value of attribute context.



219
220
221
# File 'lib/byebug/processors/command_processor.rb', line 219

def context
  @context
end

#displayObject

Returns the value of attribute display.



219
220
221
# File 'lib/byebug/processors/command_processor.rb', line 219

def display
  @display
end

#fileObject

Returns the value of attribute file.



219
220
221
# File 'lib/byebug/processors/command_processor.rb', line 219

def file
  @file
end

#frame_posObject

Returns the value of attribute frame_pos.



219
220
221
# File 'lib/byebug/processors/command_processor.rb', line 219

def frame_pos
  @frame_pos
end

#interfaceObject

Returns the value of attribute interface.



220
221
222
# File 'lib/byebug/processors/command_processor.rb', line 220

def interface
  @interface
end

#lineObject

Returns the value of attribute line.



220
221
222
# File 'lib/byebug/processors/command_processor.rb', line 220

def line
  @line
end

#previous_lineObject

Returns the value of attribute previous_line.



220
221
222
# File 'lib/byebug/processors/command_processor.rb', line 220

def previous_line
  @previous_line
end

Instance Method Details

#locationObject



239
240
241
242
243
244
245
# File 'lib/byebug/processors/command_processor.rb', line 239

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



235
236
237
# File 'lib/byebug/processors/command_processor.rb', line 235

def proceed
  @proceed = true
end

#proceed?Boolean

Returns:

  • (Boolean)


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

def proceed?
  @proceed
end