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) • 395 B
TypeScript
import { JoinClause } from "../models/Clause";
import { Lexeme } from "../models/Lexeme";
export declare class JoinClauseParser {
static tryParse(lexemes: Lexeme[], index: number): {
value: JoinClause[];
newIndex: number;
} | null;
private static isJoinKeyword;
private static parseLateral;
private static isJoinCommand;
private static parseJoinClause;
}