class Cucumber::Ast::Comment

def initialize(value)

:nodoc:

This gets parsed into a Comment with value "# Lorem ipsum\n# dolor sit amet\n"

# dolor sit amet
# Lorem ipsum

Holds the value of a comment parsed from a feature file:
def initialize(value)
  @value = value
end