class Cucumber::Core::Ast::Location

def self.of_caller

def self.of_caller
  file, raw_line = *caller[1].split(':')[0..1]
  new(file, raw_line.to_i)
end