Class: Byebug::ControlCommandProcessor::State

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(interface, commands) ⇒ State

Returns a new instance of State.



425
426
427
428
# File 'lib/byebug/processor.rb', line 425

def initialize(interface, commands)
  @interface = interface
  @commands = commands
end

Instance Attribute Details

#commandsObject (readonly)

Returns the value of attribute commands.



423
424
425
# File 'lib/byebug/processor.rb', line 423

def commands
  @commands
end

#interfaceObject (readonly)

Returns the value of attribute interface.



423
424
425
# File 'lib/byebug/processor.rb', line 423

def interface
  @interface
end

Instance Method Details

#confirm(*args) ⇒ Object



436
437
438
# File 'lib/byebug/processor.rb', line 436

def confirm(*args)
  'y'
end

#contextObject



440
441
442
# File 'lib/byebug/processor.rb', line 440

def context
  nil
end

#fileObject



444
445
446
447
# File 'lib/byebug/processor.rb', line 444

def file
  errmsg "No filename given.\n"
  throw :debug_error
end

#proceedObject



430
431
# File 'lib/byebug/processor.rb', line 430

def proceed
end