UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

11 lines (10 loc) 954 B
import type { DataflowProcessorInformation } from '../../processor'; import type { DataflowInformation } from '../../info'; import type { RAstNodeBase, 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'; import type { Identifier } from '../../environments/identifier'; /** * 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> & RAstNodeBase<OtherInfo> & Location, data: DataflowProcessorInformation<OtherInfo & ParentInformation>, name: Identifier, args: readonly (RNode<OtherInfo & ParentInformation> | typeof EmptyArgument | undefined)[]): DataflowInformation;