class Byebug::Command

def bb_warning_eval(str, b = get_binding)


error, an error message with the exception is printed.
Evaluates a string containing Ruby code, using binding +b+. In case of
def bb_warning_eval(str, b = get_binding)
  b.eval(str)
rescue StandardError, ScriptError => e
  text_message = "#{e.class} Exception: #{e.message}"
  errmsg(pr('eval.exception', text_message: text_message))
  nil
end