Class: Cucumber::Ast::PyString::Builder
- Defined in:
- lib/cucumber/ast/py_string.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#string ⇒ Object
readonly
Returns the value of attribute string.
Instance Method Summary collapse
- #eof ⇒ Object
-
#initialize ⇒ Builder
constructor
A new instance of Builder.
- #py_string(string, line_number) ⇒ Object
Constructor Details
permalink #initialize ⇒ Builder
Returns a new instance of Builder.
23 24 25 |
# File 'lib/cucumber/ast/py_string.rb', line 23 def initialize @string = '' end |
Instance Attribute Details
Instance Method Details
permalink #eof ⇒ Object
[View source]
31 32 |
# File 'lib/cucumber/ast/py_string.rb', line 31 def eof end |
permalink #py_string(string, line_number) ⇒ Object
[View source]
27 28 29 |
# File 'lib/cucumber/ast/py_string.rb', line 27 def py_string(string, line_number) @string = string end |