class Cucumber::Ast::DocString::Builder
:nodoc:
Note how the indentation from the source is stripped away.
example above, that would return: "I like\nCucumber sandwich"
The StepDefinition can then access the String via the #to_s method. In the
which is yielded to the StepDefinition block as the last argument.
The text between the pair of """
is stored inside a DocString,
“”“
Cucumber sandwich
I like
”“”
Given the message
Represents an inline argument in a step. Example:
def doc_string(string, line_number)
def doc_string(string, line_number) @string = string end
def eof
def eof end
def initialize
def initialize @string = '' end