Class: Cucumber::Ast::Tags
Overview
:nodoc:
Instance Attribute Summary collapse
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #accept_hook?(hook) ⇒ Boolean
-
#initialize(line, tags) ⇒ Tags
constructor
A new instance of Tags.
- #to_sexp ⇒ Object
Constructor Details
#initialize(line, tags) ⇒ Tags
Returns a new instance of Tags.
8 9 10 |
# File 'lib/cucumber/ast/tags.rb', line 8 def initialize(line, ) @line, @tags = line, end |
Instance Attribute Details
#tags ⇒ Object (readonly)
Returns the value of attribute tags.
6 7 8 |
# File 'lib/cucumber/ast/tags.rb', line 6 def @tags end |
Instance Method Details
#accept(visitor) ⇒ Object
12 13 14 15 16 17 |
# File 'lib/cucumber/ast/tags.rb', line 12 def accept(visitor) return if Cucumber.wants_to_quit @tags.each do |tag| visitor.visit_tag_name(tag.name) end end |
#accept_hook?(hook) ⇒ Boolean
19 20 21 |
# File 'lib/cucumber/ast/tags.rb', line 19 def accept_hook?(hook) Gherkin::TagExpression.new(hook.tag_expressions).evaluate(@tags) end |
#to_sexp ⇒ Object
23 24 25 |
# File 'lib/cucumber/ast/tags.rb', line 23 def to_sexp @tags.map{|tag| [:tag, tag.name]} end |