@fabric_v1/compiler
Version:
Fabric DSL compiler (parser, checker, IR & backends)
17 lines (16 loc) • 369 B
TypeScript
export interface SourceLocation {
start: {
line: number;
column: number;
};
end?: {
line: number;
column: number;
};
}
export declare class CompilerError extends Error {
loc?: SourceLocation;
constructor(message: string, loc?: SourceLocation);
toString(): string;
}
export { CompilerError as SemanticError };