Class: Debugger::ControlState

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(interface) ⇒ ControlState

Returns a new instance of ControlState.



136
137
138
# File 'lib/ruby-debug-ide/ide_processor.rb', line 136

def initialize(interface)
  @interface = interface
end

Instance Method Details

#contextObject



147
148
149
# File 'lib/ruby-debug-ide/ide_processor.rb', line 147

def context
  nil
end

#fileObject



151
152
153
154
# File 'lib/ruby-debug-ide/ide_processor.rb', line 151

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


143
144
145
# File 'lib/ruby-debug-ide/ide_processor.rb', line 143

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

#proceedObject



140
141
# File 'lib/ruby-debug-ide/ide_processor.rb', line 140

def proceed
end