@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
16 lines (15 loc) • 407 B
TypeScript
import type { KnownParserName } from '../r-bridge/parser';
export interface SingleBenchmarkCliOptions {
verbose: boolean;
help: boolean;
input?: string;
'file-id'?: number;
'run-num'?: number;
slice: string;
output?: string;
parser: KnownParserName;
'enable-pointer-tracking': boolean;
'max-slices': number;
threshold?: number;
'sampling-strategy': string;
}