ifc-expressions
Version:
Parsing and evaluation of IFC expressions
10 lines (9 loc) • 323 B
TypeScript
import { ParserRuleContext } from "antlr4";
export declare class ValidationException extends Error {
readonly fromLine: number;
readonly toLine: number;
readonly fromColumn: number;
readonly toColumn: number;
constructor(message: string, ctx: ParserRuleContext);
private static makeColumnsString;
}