class Byebug::PPCommand

def execute

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

def help(cmd)

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

def help_command

def help_command
  'pp'
end

def regexp

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