UNPKG

rawsql-ts

Version:

[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.

8 lines (7 loc) 300 B
import { Lexeme } from "../models/Lexeme"; export declare class ParseError extends Error { index: number; context: string; constructor(message: string, index: number, context: string); static fromUnparsedLexemes(lexemes: Lexeme[], index: number, messagePrefix: string): ParseError; }