@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
10 lines (9 loc) • 353 B
TypeScript
import type { Writable } from 'ts-essentials';
import type { Feature } from '../../feature';
declare const initialExpressionListInfo: {
allExpressionLists: number;
deepestNesting: number;
};
export type ExpressionListInfo = Writable<typeof initialExpressionListInfo>;
export declare const expressionList: Feature<ExpressionListInfo>;
export {};