Class: Debugger::PPCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/ruby-debug/commands/eval.rb

Overview

:nodoc:

Constant Summary

Constants inherited from Command

Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, #find, inherited, #initialize, load_commands, #match, method_missing, options, register_setting_get, register_setting_set, register_setting_var, settings, settings_map

Constructor Details

This class inherits a constructor from Debugger::Command

Class Method Details

.help(cmd) ⇒ Object



94
95
96
97
98
# File 'lib/ruby-debug/commands/eval.rb', line 94

def help(cmd)
  %{
    pp expression\tevaluate expression and pretty-print its value
  }
end

.help_commandObject



90
91
92
# File 'lib/ruby-debug/commands/eval.rb', line 90

def help_command
  'pp'
end

Instance Method Details

#executeObject



79
80
81
82
83
84
85
86
87
# File 'lib/ruby-debug/commands/eval.rb', line 79

def execute
  out = StringIO.new
  run_with_binding do |b|
    PP.pp(debug_eval(@match.post_match, b), out)
  end
  print out.string
rescue 
  out.puts $!.message
end

#regexpObject



75
76
77
# File 'lib/ruby-debug/commands/eval.rb', line 75

def regexp
  /^\s*pp\s+/
end