Class: DebuggerXml::Vim::Processor

Inherits:
Ide::Processor show all
Defined in:
lib/debugger_xml/vim/processor.rb

Instance Attribute Summary

Attributes inherited from Ide::Processor

#context, #display, #file, #interface, #line

Instance Method Summary collapse

Methods inherited from Ide::Processor

#at_breakpoint, #at_catchpoint, #at_line, #at_line?, #at_return, #at_tracing

Constructor Details

#initialize(control_command_processor, *args) ⇒ Processor

Returns a new instance of Processor.



7
8
9
10
# File 'lib/debugger_xml/vim/processor.rb', line 7

def initialize(control_command_processor, *args)
  @control_command_processor = control_command_processor
  super(*args)
end

Instance Method Details

#stop_threadObject



12
13
14
15
16
# File 'lib/debugger_xml/vim/processor.rb', line 12

def stop_thread
  @control_command_processor.process_command("where")
  @control_command_processor.process_command("var ide")
  super
end