class Byebug::EvalCommand

def execute

def execute
  expr = @match ? @match.post_match : @input
  run_with_binding do |b|
    if Setting[:stack_on_error]
      puts "#{bb_eval(expr, b).inspect}"
    else
      puts "#{bb_warning_eval(expr, b).inspect}"
    end
  end
rescue
  puts "#{$ERROR_INFO.class} Exception: #{$ERROR_INFO.message}"
end