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:



361
362
363
364
365
366
367
# File 'lib/ruby-debug/processor.rb', line 361

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

Instance Attribute Details

#bindingObject

Returns the value of attribute binding.



357
358
359
# File 'lib/ruby-debug/processor.rb', line 357

def binding
  @binding
end

#commandsObject

Returns the value of attribute commands.



359
360
361
# File 'lib/ruby-debug/processor.rb', line 359

def commands
  @commands
end

#contextObject

Returns the value of attribute context.



357
358
359
# File 'lib/ruby-debug/processor.rb', line 357

def context
  @context
end

#displayObject

Returns the value of attribute display.



358
359
360
# File 'lib/ruby-debug/processor.rb', line 358

def display
  @display
end

#fileObject

Returns the value of attribute file.



357
358
359
# File 'lib/ruby-debug/processor.rb', line 357

def file
  @file
end

#frame_posObject

Returns the value of attribute frame_pos.



358
359
360
# File 'lib/ruby-debug/processor.rb', line 358

def frame_pos
  @frame_pos
end

#interfaceObject

Returns the value of attribute interface.



359
360
361
# File 'lib/ruby-debug/processor.rb', line 359

def interface
  @interface
end

#lineObject

Returns the value of attribute line.



357
358
359
# File 'lib/ruby-debug/processor.rb', line 357

def line
  @line
end

#previous_lineObject

Returns the value of attribute previous_line.



358
359
360
# File 'lib/ruby-debug/processor.rb', line 358

def previous_line
  @previous_line
end

Instance Method Details

#confirm(*args) ⇒ Object



378
379
380
# File 'lib/ruby-debug/processor.rb', line 378

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

#errmsg(*args) ⇒ Object

FIXME: use delegate?



370
371
372
# File 'lib/ruby-debug/processor.rb', line 370

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


374
375
376
# File 'lib/ruby-debug/processor.rb', line 374

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

#proceedObject



386
387
388
# File 'lib/ruby-debug/processor.rb', line 386

def proceed
  @proceed = true
end

#proceed?Boolean

Returns:

  • (Boolean)


382
383
384
# File 'lib/ruby-debug/processor.rb', line 382

def proceed?
  @proceed
end