module Byebug::Helpers::ThreadHelper
def location(ctx)
def location(ctx) return context.location if ctx == Byebug.current_context backtrace = ctx.thread.backtrace_locations return '' unless backtrace && backtrace[0] "#{backtrace[0].path}:#{backtrace[0].lineno}" end