1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Do not modify this file since it was automatically generated from:
%
% RspParser.R
%
% by the Rdoc compiler part of the R.oo package.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\name{parseRaw.RspParser}
\alias{parseRaw.RspParser}
\alias{RspParser.parseRaw}
\alias{parseRaw,RspParser-method}
\title{Parses the string into blocks of text and RSP}
\description{
Parses the string into blocks of text and RSP.
}
\usage{
\method{parseRaw}{RspParser}(parser, object, what=c("comment", "directive", "expression"), commentLength=-1L,
..., verbose=FALSE)
}
\arguments{
\item{object}{An \code{\link{RspString}} to be parsed.}
\item{what}{A \code{\link[base]{character}} string specifying what type of RSP construct
to parse for.}
\item{commentLength}{Specify the number of hyphens in RSP comments
to parse for.}
\item{...}{Not used.}
\item{verbose}{See \code{\link[R.utils]{Verbose}}.}
}
\value{
Returns a named \code{\link[base]{list}} with elements named "text" and "rsp".
}
\author{Henrik Bengtsson}
\seealso{
For more information see \code{\link{RspParser}}.
}
\keyword{internal}
\keyword{methods}
|