parser-package {parser}R Documentation

Detailed R source code parser

Description

Detailed R source code parser

Details

Package: parser
Type: Package
Version: 0.0-2
Date: 2009-07-24
License: GPL-3
LazyLoad: yes

Author(s)

Romain Francois

Maintainer: Romain Francois <francoisromain@free.fr>

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

## Not run: 
tf <- tempfile()
dump( "glm" , file = tf )

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

# clean up
unlink( tf )
## End(Not run)

[Package parser version 0.0-3 Index]