UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

6 lines (5 loc) 297 B
import type { ControlFlowInformation } from './control-flow-graph'; /** * Take a control flow information of a graph without any basic blocks and convert it to a graph with basic blocks. */ export declare function convertCfgToBasicBlocks(cfInfo: ControlFlowInformation): ControlFlowInformation;