Class: Debugger::CommandProcessor::State

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ State

Returns a new instance of State.

Yields:

  • (_self)

Yield Parameters:



135
136
137
138
139
140
# File 'lib/ruby-debug/processor.rb', line 135

def initialize
  @frame_pos = 0
  @previous_line = nil
  @proceed = false
  yield self
end

Instance Attribute Details

#bindingObject

Returns the value of attribute binding.



131
132
133
# File 'lib/ruby-debug/processor.rb', line 131

def binding
  @binding
end

#commandsObject

Returns the value of attribute commands.



133
134
135
# File 'lib/ruby-debug/processor.rb', line 133

def commands
  @commands
end

#contextObject

Returns the value of attribute context.



131
132
133
# File 'lib/ruby-debug/processor.rb', line 131

def context
  @context
end

#displayObject

Returns the value of attribute display.



132
133
134
# File 'lib/ruby-debug/processor.rb', line 132

def display
  @display
end

#fileObject

Returns the value of attribute file.



131
132
133
# File 'lib/ruby-debug/processor.rb', line 131

def file
  @file
end

#frame_posObject

Returns the value of attribute frame_pos.



132
133
134
# File 'lib/ruby-debug/processor.rb', line 132

def frame_pos
  @frame_pos
end

#framesObject

Returns the value of attribute frames.



133
134
135
# File 'lib/ruby-debug/processor.rb', line 133

def frames
  @frames
end

#interfaceObject

Returns the value of attribute interface.



133
134
135
# File 'lib/ruby-debug/processor.rb', line 133

def interface
  @interface
end

#lineObject

Returns the value of attribute line.



131
132
133
# File 'lib/ruby-debug/processor.rb', line 131

def line
  @line
end

#previous_lineObject

Returns the value of attribute previous_line.



132
133
134
# File 'lib/ruby-debug/processor.rb', line 132

def previous_line
  @previous_line
end

Instance Method Details

#confirm(*args) ⇒ Object



146
147
148
# File 'lib/ruby-debug/processor.rb', line 146

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


142
143
144
# File 'lib/ruby-debug/processor.rb', line 142

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

#proceedObject



154
155
156
# File 'lib/ruby-debug/processor.rb', line 154

def proceed
  @proceed = true
end

#proceed?Boolean

Returns:

  • (Boolean)


150
151
152
# File 'lib/ruby-debug/processor.rb', line 150

def proceed?
  @proceed
end