Class: Debugger::CommandProcessor::State
- Inherits:
-
Object
- Object
- Debugger::CommandProcessor::State
- Defined in:
- lib/ruby-debug/processor.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#binding ⇒ Object
Returns the value of attribute binding.
-
#commands ⇒ Object
Returns the value of attribute commands.
-
#context ⇒ Object
Returns the value of attribute context.
-
#display ⇒ Object
Returns the value of attribute display.
-
#file ⇒ Object
Returns the value of attribute file.
-
#frame_pos ⇒ Object
Returns the value of attribute frame_pos.
-
#interface ⇒ Object
Returns the value of attribute interface.
-
#line ⇒ Object
Returns the value of attribute line.
-
#previous_line ⇒ Object
Returns the value of attribute previous_line.
Instance Method Summary collapse
- #confirm(*args) ⇒ Object
-
#errmsg(*args) ⇒ Object
FIXME: use delegate?.
-
#initialize {|_self| ... } ⇒ State
constructor
A new instance of State.
- #print(*args) ⇒ Object
- #print_debug(*args) ⇒ Object
- #proceed ⇒ Object
- #proceed? ⇒ Boolean
Constructor Details
#initialize {|_self| ... } ⇒ State
Returns a new instance of State.
365 366 367 368 369 370 371 |
# File 'lib/ruby-debug/processor.rb', line 365 def initialize super() @frame_pos = 0 @previous_line = nil @proceed = false yield self end |
Instance Attribute Details
#binding ⇒ Object
Returns the value of attribute binding.
361 362 363 |
# File 'lib/ruby-debug/processor.rb', line 361 def binding @binding end |
#commands ⇒ Object
Returns the value of attribute commands.
363 364 365 |
# File 'lib/ruby-debug/processor.rb', line 363 def commands @commands end |
#context ⇒ Object
Returns the value of attribute context.
361 362 363 |
# File 'lib/ruby-debug/processor.rb', line 361 def context @context end |
#display ⇒ Object
Returns the value of attribute display.
362 363 364 |
# File 'lib/ruby-debug/processor.rb', line 362 def display @display end |
#file ⇒ Object
Returns the value of attribute file.
361 362 363 |
# File 'lib/ruby-debug/processor.rb', line 361 def file @file end |
#frame_pos ⇒ Object
Returns the value of attribute frame_pos.
362 363 364 |
# File 'lib/ruby-debug/processor.rb', line 362 def frame_pos @frame_pos end |
#interface ⇒ Object
Returns the value of attribute interface.
363 364 365 |
# File 'lib/ruby-debug/processor.rb', line 363 def interface @interface end |
#line ⇒ Object
Returns the value of attribute line.
361 362 363 |
# File 'lib/ruby-debug/processor.rb', line 361 def line @line end |
#previous_line ⇒ Object
Returns the value of attribute previous_line.
362 363 364 |
# File 'lib/ruby-debug/processor.rb', line 362 def previous_line @previous_line end |
Instance Method Details
#confirm(*args) ⇒ Object
386 387 388 |
# File 'lib/ruby-debug/processor.rb', line 386 def confirm(*args) @interface.confirm(*args) end |
#errmsg(*args) ⇒ Object
FIXME: use delegate?
374 375 376 |
# File 'lib/ruby-debug/processor.rb', line 374 def errmsg(*args) @interface.errmsg(*args) end |
#print(*args) ⇒ Object
378 379 380 |
# File 'lib/ruby-debug/processor.rb', line 378 def print(*args) @interface.print(*args) end |
#print_debug(*args) ⇒ Object
382 383 384 |
# File 'lib/ruby-debug/processor.rb', line 382 def print_debug(*args) @interface.print_debug(*args) end |
#proceed ⇒ Object
394 395 396 |
# File 'lib/ruby-debug/processor.rb', line 394 def proceed @proceed = true end |
#proceed? ⇒ Boolean
390 391 392 |
# File 'lib/ruby-debug/processor.rb', line 390 def proceed? @proceed end |