Class: Debugger::ControlCommandProcessor::State

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby-debug/processor.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(interface, commands) ⇒ State

Returns a new instance of State.



444
445
446
447
# File 'lib/ruby-debug/processor.rb', line 444

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

Instance Attribute Details

#commandsObject (readonly)

Returns the value of attribute commands.



442
443
444
# File 'lib/ruby-debug/processor.rb', line 442

def commands
  @commands
end

#interfaceObject (readonly)

Returns the value of attribute interface.



442
443
444
# File 'lib/ruby-debug/processor.rb', line 442

def interface
  @interface
end

Instance Method Details

#confirm(*args) ⇒ Object



460
461
462
# File 'lib/ruby-debug/processor.rb', line 460

def confirm(*args)
  'y'
end

#contextObject



464
465
466
# File 'lib/ruby-debug/processor.rb', line 464

def context
  nil
end

#errmsg(*args) ⇒ Object



452
453
454
# File 'lib/ruby-debug/processor.rb', line 452

def errmsg(*args)
  @interface.print(*args)
end

#fileObject



468
469
470
471
# File 'lib/ruby-debug/processor.rb', line 468

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


456
457
458
# File 'lib/ruby-debug/processor.rb', line 456

def print(*args)
  @interface.print(*args)
end

#proceedObject



449
450
# File 'lib/ruby-debug/processor.rb', line 449

def proceed
end