module Byebug::Helpers::ThreadHelper

def location(ctx)

Other tags:
    Todo: - Check whether it is Byebug.current_context or context
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