@eagleoutice/flowr
Version:
Static Dataflow Analyzer and Program Slicer for the R Programming Language
12 lines (11 loc) • 402 B
TypeScript
import type { IdMessageBase } from './all-messages';
/**
* Sent in case of any error (e.g., if the analysis fails, or the message contains syntax errors).
*/
export interface FlowrErrorMessage extends IdMessageBase {
type: 'error';
/** if fatal, the connection will be partially closed afterward */
fatal: boolean;
/** the human-readable reason for the error */
reason: string;
}