Class: Debugger::ControlState
- Inherits:
-
Object
- Object
- Debugger::ControlState
- Defined in:
- lib/ruby-debug-ide/ide_processor.rb
Overview
:nodoc:
Instance Method Summary collapse
- #context ⇒ Object
- #file ⇒ Object
-
#initialize(interface) ⇒ ControlState
constructor
A new instance of ControlState.
- #print(*args) ⇒ Object
- #proceed ⇒ Object
Constructor Details
#initialize(interface) ⇒ ControlState
Returns a new instance of ControlState.
134 135 136 |
# File 'lib/ruby-debug-ide/ide_processor.rb', line 134 def initialize(interface) @interface = interface end |
Instance Method Details
#context ⇒ Object
145 146 147 |
# File 'lib/ruby-debug-ide/ide_processor.rb', line 145 def context nil end |
#file ⇒ Object
149 150 151 152 |
# File 'lib/ruby-debug-ide/ide_processor.rb', line 149 def file print "ERROR: No filename given.\n" throw :debug_error end |
#print(*args) ⇒ Object
141 142 143 |
# File 'lib/ruby-debug-ide/ide_processor.rb', line 141 def print(*args) @interface.print(*args) end |
#proceed ⇒ Object
138 139 |
# File 'lib/ruby-debug-ide/ide_processor.rb', line 138 def proceed end |