module Byebug::Helpers::EvalHelper

def error_msg(exception)

def error_msg(exception)
  at = exception.backtrace
  locations = ["#{at.shift}: #{warning_msg(exception)}"]
  locations += at.map { |path| "  from #{path}" }
  locations.join("\n")
end