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