UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

11 lines (10 loc) 463 B
import { type DataflowGraphVertexArgument } from '../dataflow/graph/vertex'; /** * Helper for unsupported functions that may change the environment. */ export declare const UnsupportedFunctions: { /** * Checks whether a data flow graph vertex represents a unsupported (environment-changing) function call (e.g. `eval`, `load`, `attach`, `rm`, ...) */ isUnsupportedCall(this: void, vertex: DataflowGraphVertexArgument | undefined): boolean; };