parser-package: Detailed R source code parser

Description Author(s) See Also Examples

Description

Detailed R source code parser

Author(s)

Romain Francois

Maintainer: Andrew Redd <Andrew.Redd@hsc.utah.edu>

See Also

The parser is a modified R parser using a very similar grammar to the standard parse function but presenting the information differently.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
tf <- tempfile()
dump( "glm" , file = tf )

# modified R parser
p <- parser( tf )
attr(p, "data")

# clean up
unlink( tf )

## End(Not run)

halpo/parser documentation built on May 17, 2019, 2:27 p.m.