UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

14 lines 421 B
import { ParserRuleContext } from "antlr4ts/ParserRuleContext"; /** * Error class for visitor validation errors */ export declare class SimCVisitorError extends Error { readonly context: ParserRuleContext; constructor(message: string, context: ParserRuleContext); get location(): { column: number; line: number; }; toString(): string; } //# sourceMappingURL=SimCVisitorError.d.ts.map