class Cucumber::Core::Ast::Location::Lines

def include?(other)

def include?(other)
  return true if (data|other.data).include?(WILDCARD)
  other.data.subset?(data) || data.subset?(other.data)
end