class Byebug::Command

def debug_warning_eval(str, b = get_binding)

def debug_warning_eval(str, b = get_binding)
  begin
    eval(str, b)
  rescue StandardError, ScriptError => e
    print "#{e.class} Exception: #{e.message}\n"
  end
end