Hello,
I am trying to write a script to analyse R scripts, which contain only
functions. Therefor, I want to test the R script if it contains onyl correct
code. Is there a nicer and more efficent function than

test <- try(source("someRscript"))
if(class(test) == "try-error"){
    print("Not executable")
}

?

Another question : Does a package exist to analyse functions? For example to
get all defined function names, argument, nestings, etc...
Does a package exists which creates a flowchart of a script which contains a
sequel of functions?

Thank you

--
View this message in context: 
http://r.789695.n4.nabble.com/Script-analysing-tp4185492p4185492.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to