| parser-package {parser} | R Documentation |
Detailed R source code parser
| Package: | parser |
| Type: | Package |
| Version: | 0.0-2 |
| Date: | 2009-07-24 |
| License: | GPL-3 |
| LazyLoad: | yes |
Romain Francois
Maintainer: Romain Francois <francoisromain@free.fr>
The
parser is a modified R parser using a very similar
grammar to the standard parse function but presenting
the information differently.
## Not run: tf <- tempfile() dump( "glm" , file = tf ) # modified R parser p <- parser( tf ) attr(p, "data") # clean up unlink( tf ) ## End(Not run)