Module: Cucumber::Parser::Feature::PyString2

Defined in:
lib/cucumber/parser/feature.rb

Instance Method Summary collapse

Instance Method Details

#at_line?(line) ⇒ Boolean

Returns:

  • (Boolean)


1526
1527
1528
# File 'lib/cucumber/parser/feature.rb', line 1526

def at_line?(line)
  line >= open_py_string.line && line <= close_py_string.line
end

#buildObject



1530
1531
1532
# File 'lib/cucumber/parser/feature.rb', line 1530

def build
  Ast::PyString.new(open_py_string.line, close_py_string.line, s.text_value, open_py_string.indentation)
end