class Byebug::PPCommand


Evaluation and pretty printing from byebug’s prompt.

def description

def description
  prettify <<-EOD
    pp <expression>
    Evaluates <expression> and pretty-prints its value.
  EOD
end

def execute

def execute
  out = StringIO.new
  run_with_binding do |b|
    if Setting[:stack_on_error]
      PP.pp(bb_eval(@match.post_match, b), out)
    else
      PP.pp(bb_warning_eval(@match.post_match, b), out)
    end
  end
  puts out.string
rescue
  out.puts $ERROR_INFO.message
end

def names

def names
  %w(pp)
end

def regexp

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