UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

10 lines (9 loc) 575 B
import { DataflowInformation } from '../../info'; import type { DataflowProcessorInformation } from '../../processor'; import type { RNodeWithParent } from '../../../r-bridge/lang-4.x/ast/model/processing/decorate'; /** * Processes a leaf node that does not contribute to dataflow by initializing * a clean dataflow information object for it. * This can be used to ignore nodes that do not affect dataflow analysis. */ export declare function processUninterestingLeaf<OtherInfo>(leaf: RNodeWithParent, info: DataflowProcessorInformation<OtherInfo>): DataflowInformation;