class Cucumber::Core::Test::Location::Precise

def hash

def hash
  self.class.hash ^ to_s.hash
end

def include?(other_lines)

def include?(other_lines)
  lines.include?(other_lines)
end

def inspect

def inspect
  "<#{self.class}: #{to_s}>"
end

def line

def line
  lines.first
end

def match?(other)

def match?(other)
  return false unless other.file == file
  other.include?(lines)
end

def on_line(new_line)

def on_line(new_line)
  Location.new(file, new_line)
end

def to_s

def to_s
  [file, lines.to_s].join(":")
end

def to_str

def to_str
  to_s
end