class Cucumber::Runtime

def doc_string(string_without_triple_quotes, content_type = '', _line_offset = 0)


Returns Ast::DocString for +string_without_triple_quotes+.
def doc_string(string_without_triple_quotes, content_type = '', _line_offset = 0)
  location = Core::Ast::Location.of_caller
  Core::Ast::DocString.new(string_without_triple_quotes, content_type, location)
end