class Rcov::CallSiteAnalyzer::CallSite

def line(level = 0)

Might return +nil+ or 0 if it is not meaningful (C extensions, etc).
Line where the method call originated.
def line(level = 0)
  stack_frame = backtrace[level]
  stack_frame ? stack_frame[3] : nil
end