UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

15 lines (14 loc) 1 kB
/** * Processes a list of expressions joining their dataflow graphs accordingly. * @module */ import type { DataflowInformation } from '../../../../../info'; import { type DataflowProcessorInformation } from '../../../../../processor'; import { NodeId } from '../../../../../../r-bridge/lang-4.x/ast/model/processing/node-id'; import type { ParentInformation } from '../../../../../../r-bridge/lang-4.x/ast/model/processing/decorate'; import type { RFunctionArgument } from '../../../../../../r-bridge/lang-4.x/ast/model/nodes/r-function-call'; import type { RSymbol } from '../../../../../../r-bridge/lang-4.x/ast/model/nodes/r-symbol'; /** * Processes a list of expressions joining their dataflow graphs accordingly. */ export declare function processExpressionList<OtherInfo>(name: RSymbol<OtherInfo & ParentInformation>, args: readonly RFunctionArgument<OtherInfo & ParentInformation>[], rootId: NodeId, data: DataflowProcessorInformation<OtherInfo & ParentInformation>): DataflowInformation;