UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

7 lines (6 loc) 297 B
import type { NodeId } from '../../r-bridge/lang-4.x/ast/model/processing/node-id'; import type { CallGraph } from '../graph/call-graph'; /** * Determines whether the function with the given ID is recursive. */ export declare function isFunctionRecursive(id: NodeId, graph: CallGraph): boolean;