UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

16 lines (15 loc) 508 B
import type { Feature } from '../../feature'; import type { Writable } from 'ts-essentials'; declare const initialVariableInfo: { numberOfVariableUses: number; numberOfDefinitions: number; numberOfRedefinitions: number; unknownVariables: number; }; export type VariableInfo = Writable<typeof initialVariableInfo>; export type DefinedVariableInformation = [ name: string, location: [line: number, character: number] ]; export declare const variables: Feature<VariableInfo>; export {};