class Cucumber::Core::Ast::Location::Wildcard

Public Instance Methods

include?(lines) click to toggle source
# File lib/cucumber/core/ast/location.rb, line 55
def include?(lines)
  true
end
match?(other) click to toggle source
# File lib/cucumber/core/ast/location.rb, line 51
def match?(other)
  other.file == file
end
to_s() click to toggle source
# File lib/cucumber/core/ast/location.rb, line 47
def to_s
  file
end