class Cucumber::Ast::PyString::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 PyString,
“”“
Cucumber sandwich
I like
”“”
Given the message
Represents an inline argument in a step. Example:

def eof

def eof
end

def initialize

def initialize
  @string = ''
end

def py_string(string, line_number)

def py_string(string, line_number)
  @string = string
end