UNPKG

cql-antlr-parser

Version:
9 lines (8 loc) 479 B
import { ParserRuleContext } from "antlr4ts/ParserRuleContext"; import { ParseTree } from "antlr4ts/tree"; export declare class AntlrUtils { static findText(ctx: ParserRuleContext): string | undefined; static findChildText(children: ParseTree[] | undefined, lexerType: number, occurrence?: number): string | undefined; protected static findChild(children: ParseTree[], lexerType: number, occurrence: number): ParseTree | undefined; private static isTargetType; }