UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

22 lines (21 loc) 500 B
/** * Denotes the kind of control flow graph (CFG). */ export declare enum CfgKind { /** * CFG with dataflow information. */ WithDataflow = 0, /** * CFG without dataflow information. */ NoDataflow = 1, /** * CFG without function definition vertices and without dataflow information. */ NoFunctionDefs = 2, /** * A CFG version that is much quicker and does not apply any simplifications or dataflow information. */ Quick = 3 }