class DebuggerXml::Vim::Processor
Public Class Methods
new(control_command_processor, *args)
click to toggle source
Calls superclass method
DebuggerXml::Ide::Processor::new
# File lib/debugger_xml/vim/processor.rb, line 7 def initialize(control_command_processor, *args) @control_command_processor = control_command_processor super(*args) end
Public Instance Methods
stop_thread()
click to toggle source
Calls superclass method
DebuggerXml::Ide::Processor#stop_thread
# 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