Module: Cucumber::Parser::Feature::PyString2
- Defined in:
- lib/cucumber/parser/feature.rb
Instance Method Summary collapse
Instance Method Details
permalink #at_line?(line) ⇒ Boolean
1563 1564 1565 |
# File 'lib/cucumber/parser/feature.rb', line 1563 def at_line?(line) line >= open_py_string.line && line <= close_py_string.line end |
permalink #build ⇒ Object
[View source]
1567 1568 1569 |
# File 'lib/cucumber/parser/feature.rb', line 1567 def build Ast::PyString.new(open_py_string.line, close_py_string.line, s.text_value, open_py_string.indentation) end |