parser-package: Detailed R source code parser

Description Details Author(s) See Also Examples

Description

Detailed R source code parser

Details

Package: parser
Type: Package
Version: 0.0-10
Date: 2010-05-31
License: GPL-3
LazyLoad: yes

Author(s)

Romain Francois

Maintainer: Romain Francois <romain@r-enthusiasts.com>

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)

parser documentation built on May 2, 2019, 6:49 p.m.