The R Project SVN R

Rev

Rev 52778 | Rev 52807 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 52778 Rev 52791
Line 12... Line 12...
12
functions without reinstalling a large package.
12
functions without reinstalling a large package.
13
}
13
}
14
\usage{
14
\usage{
15
evalSource(source, package = "", lock = TRUE, cache = FALSE)
15
evalSource(source, package = "", lock = TRUE, cache = FALSE)
16
 
16
 
17
insertSource(source, package = "", functions = , methods = )
17
insertSource(source, package = "", functions = , methods = ,
-
 
18
           force = )
18
 
19
 
19
}
20
}
20
\arguments{
21
\arguments{
21
  \item{source}{
22
  \item{source}{
22
A file to be parsed and evaluated by \code{evalSource} to find the new
23
A file to be parsed and evaluated by \code{evalSource} to find the new
Line 62... Line 63...
62
The default settings are generally recommended, the \code{lock} to
63
The default settings are generally recommended, the \code{lock} to
63
support the credibility of the object returned as a snapshot of the
64
support the credibility of the object returned as a snapshot of the
64
source file, and the second so that method definitions can be inserted
65
source file, and the second so that method definitions can be inserted
65
later by \code{insertSource} using the trace mechanism.
66
later by \code{insertSource} using the trace mechanism.
66
}
67
}
-
 
68
\item{force}{
-
 
69
If \code{FALSE}, only functions currently in the environment will be
-
 
70
redefined, using \code{\link{trace}}.  If \code{TRUE}, other
-
 
71
objects/functions will be simply assigned.  By default, \code{TRUE} if
-
 
72
neither the \code{functions} nor the \code{methods} argument is supplied.
-
 
73
}
67
 
74
 
68
}
75
}
69
\details{
76
\details{
70
The \code{source} file is parsed and evaluated, suppressing by default
77
The \code{source} file is parsed and evaluated, suppressing by default
71
the actual caching of method and class definitions contained in it, so
78
the actual caching of method and class definitions contained in it, so