UNPKG

@eagleoutice/flowr-dev

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

7 lines (6 loc) 506 B
import type { FlowrConfig } from '../../config'; import type { ReplOutput } from './commands/repl-main'; /** Prefix of an input that is to be re-analyzed whenever the file changes, the counterpart of {@link fileProtocol}. */ export declare const watchProtocol = "watch://"; /** The input to analyze: one that looks like a path gets the {@link fileProtocol}, unless the repl config says not to. */ export declare function handlePathLikeInput(output: ReplOutput, input: string, config: FlowrConfig): string;