module Byebug::EvalFunctions

def run_with_binding


Get current binding and yield it to the given block
def run_with_binding
  binding = get_binding
  yield binding
end