class Sentry::StacktraceInterface::Frame

def initialize(project_root, line)

def initialize(project_root, line)
  @project_root = project_root
  @abs_path = line.file
  @function = line.method if line.method
  @lineno = line.number
  @in_app = line.in_app
  @module = line.module_name if line.module_name
  @filename = compute_filename
end