Re: [R] Preexisting Work on Data- and Control-Flow Analysis

2022-12-07 Thread Richard O'Keefe
You should probably look at the compiler. One issue with data and control flow analysis in R is that f <- function (x, y) x + y f(ping, pong) may invoke an S3 (see ?S3groupGeneric, Ops) or S4 (see ?Arith) method, which might not have existed when f was analysed. Indeed, f <- function (x, y

[R] Preexisting Work on Data- and Control-Flow Analysis

2022-12-06 Thread Florian Sihler
Hello R-Help Mailinglist, I hope I've found the correct mailing list for my question (if not, please point me to the correct one). For my master's thesis I plan on creating and implementing a program-slicing algorithm for R-Programs using (probably only static) data- and control-flow analysis.