Class: Cucumber::Core::Ast::OutlineStep
- Inherits:
-
Object
- Object
- Cucumber::Core::Ast::OutlineStep
- Includes:
- DescribesItself, HasLocation
- Defined in:
- lib/cucumber/core/ast/outline_step.rb
Instance Attribute Summary collapse
-
#comments ⇒ Object
readonly
Returns the value of attribute comments.
-
#keyword ⇒ Object
readonly
Returns the value of attribute keyword.
-
#language ⇒ Object
readonly
Returns the value of attribute language.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#multiline_arg ⇒ Object
readonly
Returns the value of attribute multiline_arg.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(language, location, comments, keyword, text, multiline_arg) ⇒ OutlineStep
constructor
A new instance of OutlineStep.
- #inspect ⇒ Object
- #to_step(row) ⇒ Object
Methods included from DescribesItself
Methods included from HasLocation
#all_locations, #attributes, #file, #file_colon_line, #line, #tags
Constructor Details
#initialize(language, location, comments, keyword, text, multiline_arg) ⇒ OutlineStep
Returns a new instance of OutlineStep.
15 16 17 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 15 def initialize(language, location, comments, keyword, text, multiline_arg) @language, @location, @comments, @keyword, @name, @multiline_arg = language, location, comments, keyword, text, multiline_arg end |
Instance Attribute Details
#comments ⇒ Object (readonly)
Returns the value of attribute comments.
13 14 15 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 13 def comments @comments end |
#keyword ⇒ Object (readonly)
Returns the value of attribute keyword.
13 14 15 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 13 def keyword @keyword end |
#language ⇒ Object (readonly)
Returns the value of attribute language.
13 14 15 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 13 def language @language end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
13 14 15 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 13 def location @location end |
#multiline_arg ⇒ Object (readonly)
Returns the value of attribute multiline_arg.
13 14 15 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 13 def multiline_arg @multiline_arg end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
13 14 15 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 13 def name @name end |
Instance Method Details
#inspect ⇒ Object
23 24 25 26 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 23 def inspect keyword_and_name = [keyword, name].join(": ") %{#<#{self.class} "#{keyword_and_name}" (#{location})>} end |
#to_step(row) ⇒ Object
19 20 21 |
# File 'lib/cucumber/core/ast/outline_step.rb', line 19 def to_step(row) Ast::ExpandedOutlineStep.new(self, language, row.location, comments, keyword, row.(name), replace_multiline_arg(row)) end |