UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

10 lines (9 loc) 869 B
import type { DataflowProcessorInformation } from '../../processor'; import type { DataflowInformation } from '../../info'; import type { Base, RNode, Location } from '../../../r-bridge/lang-4.x/ast/model/model'; import type { ParentInformation } from '../../../r-bridge/lang-4.x/ast/model/processing/decorate'; import type { EmptyArgument } from '../../../r-bridge/lang-4.x/ast/model/nodes/r-function-call'; /** * Helper function for {@link processNamedCall} using the given `functionName` as the name of the function. */ export declare function processAsNamedCall<OtherInfo>({ info, lexeme, location }: RNode<OtherInfo & ParentInformation> & Base<OtherInfo> & Location, data: DataflowProcessorInformation<OtherInfo & ParentInformation>, name: string, args: readonly (RNode<OtherInfo & ParentInformation> | typeof EmptyArgument | undefined)[]): DataflowInformation;