Class: Debugger::ControlCommandProcessor::State
- Inherits:
-
Object
- Object
- Debugger::ControlCommandProcessor::State
- Defined in:
- lib/ruby-debug/processor.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#commands ⇒ Object
readonly
Returns the value of attribute commands.
-
#interface ⇒ Object
readonly
Returns the value of attribute interface.
Instance Method Summary collapse
- #confirm(*args) ⇒ Object
- #context ⇒ Object
- #errmsg(*args) ⇒ Object
- #file ⇒ Object
-
#initialize(interface, commands) ⇒ State
constructor
A new instance of State.
- #print(*args) ⇒ Object
- #proceed ⇒ Object
Constructor Details
#initialize(interface, commands) ⇒ State
Returns a new instance of State.
452 453 454 455 |
# File 'lib/ruby-debug/processor.rb', line 452 def initialize(interface, commands) @interface = interface @commands = commands end |
Instance Attribute Details
#commands ⇒ Object (readonly)
Returns the value of attribute commands.
450 451 452 |
# File 'lib/ruby-debug/processor.rb', line 450 def commands @commands end |
#interface ⇒ Object (readonly)
Returns the value of attribute interface.
450 451 452 |
# File 'lib/ruby-debug/processor.rb', line 450 def interface @interface end |
Instance Method Details
#confirm(*args) ⇒ Object
468 469 470 |
# File 'lib/ruby-debug/processor.rb', line 468 def confirm(*args) 'y' end |
#context ⇒ Object
472 473 474 |
# File 'lib/ruby-debug/processor.rb', line 472 def context nil end |
#errmsg(*args) ⇒ Object
460 461 462 |
# File 'lib/ruby-debug/processor.rb', line 460 def errmsg(*args) @interface.print(*args) end |
#file ⇒ Object
476 477 478 479 |
# File 'lib/ruby-debug/processor.rb', line 476 def file errmsg "No filename given.\n" throw :debug_error end |
#print(*args) ⇒ Object
464 465 466 |
# File 'lib/ruby-debug/processor.rb', line 464 def print(*args) @interface.print(*args) end |
#proceed ⇒ Object
457 458 |
# File 'lib/ruby-debug/processor.rb', line 457 def proceed end |