Class: Pry::Result

Inherits:
Object show all
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/command_set.rb

Overview

Wraps the return result of process_commands, indicates if the result IS a command and what kind of command (e.g void)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(is_command, retval = nil) ⇒ Result

Returns a new instance of Result.



400
401
402
403
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/command_set.rb', line 400

def initialize(is_command, retval = nil)
  @is_command = is_command
  @retval = retval
end

Instance Attribute Details

#retvalObject (readonly)

Returns the value of attribute retval.



398
399
400
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/command_set.rb', line 398

def retval
  @retval
end

Instance Method Details

#command?Boolean

Is the result a command?

Returns:

  • (Boolean)


407
408
409
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/command_set.rb', line 407

def command?
  @is_command
end

#void_command?Boolean

Is the result a command and if it is, is it a void command? (one that does not return a value)

Returns:

  • (Boolean)


414
415
416
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/pry-0.14.2/lib/pry/command_set.rb', line 414

def void_command?
  retval == Command::VOID_VALUE
end