rawsql-ts
Version:
[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.
13 lines (12 loc) • 372 B
TypeScript
import { BaseTokenReader } from './BaseTokenReader';
import { Lexeme } from '../models/Lexeme';
/**
* Reads SQL symbol tokens (., ,, (, ))
*/
export declare class SpecialSymbolTokenReader extends BaseTokenReader {
private static readonly SPECIAL_SYMBOL_TOKENS;
/**
* Try to read a symbol token
*/
tryRead(previous: Lexeme | null): Lexeme | null;
}