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

Public Instance Methods

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