@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
15 lines (14 loc) • 420 B
TypeScript
import type { Feature } from '../../feature';
import type { Writable } from 'ts-essentials';
declare const initialValueInfo: {
allNumerics: number;
imaginaryNumbers: number;
integers: number;
floatHex: number;
logical: number;
specialConstants: number;
strings: number;
};
export type ValueInfo = Writable<typeof initialValueInfo>;
export declare const values: Feature<ValueInfo>;
export {};