Class: Cucumber::Ast::Tags

Inherits:
Object show all
Defined in:
lib/cucumber/ast/tags.rb

Overview

Holds the names of tags parsed from a feature file:

@invoice @release_2

This gets stored internally as ["invoice", "release_2"]

Instance Method Summary collapse

Constructor Details

#initialize(line, tag_names) ⇒ Tags

Returns a new instance of Tags.



10
11
12
# File 'lib/cucumber/ast/tags.rb', line 10

def initialize(line, tag_names)
  @line, @tag_names = line, tag_names
end

Instance Method Details

#accept(visitor) ⇒ Object



22
23
24
25
26
# File 'lib/cucumber/ast/tags.rb', line 22

def accept(visitor)
  @tag_names.each do |tag_name|
    visitor.visit_tag_name(tag_name)
  end
end

#has_tags?(tags) ⇒ Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/cucumber/ast/tags.rb', line 14

def has_tags?(tags)
  (@tag_names & tags).any?
end

#matches_lines?(lines) ⇒ Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/cucumber/ast/tags.rb', line 18

def matches_lines?(lines)
  lines.index(@line)
end

#to_sexpObject



28
29
30
# File 'lib/cucumber/ast/tags.rb', line 28

def to_sexp
  @tag_names.map{|tag_name| [:tag, tag_name]}
end