Class: Byebug::PPCommand

Inherits:
Command show all
Defined in:
lib/byebug/commands/eval.rb

Constant Summary

Constants inherited from Command

Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, find, format_subcmd, format_subcmds, help, 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 Byebug::Command

Class Method Details

.descriptionObject



92
93
94
# File 'lib/byebug/commands/eval.rb', line 92

def description
  %{pp expression\tevaluate expression and pretty-print its value}
end

.namesObject



88
89
90
# File 'lib/byebug/commands/eval.rb', line 88

def names
  %w(pp)
end

Instance Method Details

#executeObject



77
78
79
80
81
82
83
84
85
# File 'lib/byebug/commands/eval.rb', line 77

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



73
74
75
# File 'lib/byebug/commands/eval.rb', line 73

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