@webda/core
Version:
Expose API with Lambda
55 lines (54 loc) • 2.01 kB
TypeScript
import { ATN } from "antlr4ts/atn/ATN.js";
import { CharStream } from "antlr4ts/CharStream.js";
import { Lexer } from "antlr4ts/Lexer.js";
import { Vocabulary } from "antlr4ts/Vocabulary.js";
export declare class WebdaQLLexer extends Lexer {
static readonly SPACE = 1;
static readonly LR_BRACKET = 2;
static readonly RR_BRACKET = 3;
static readonly COMMA = 4;
static readonly SINGLE_QUOTE_SYMB = 5;
static readonly DOUBLE_QUOTE_SYMB = 6;
static readonly LR_SQ_BRACKET = 7;
static readonly RR_SQ_BRACKET = 8;
static readonly AND = 9;
static readonly OR = 10;
static readonly EQUAL = 11;
static readonly NOT_EQUAL = 12;
static readonly GREATER = 13;
static readonly GREATER_OR_EQUAL = 14;
static readonly LESS = 15;
static readonly LESS_OR_EQUAL = 16;
static readonly LIKE = 17;
static readonly IN = 18;
static readonly CONTAINS = 19;
static readonly TRUE = 20;
static readonly FALSE = 21;
static readonly LIMIT = 22;
static readonly OFFSET = 23;
static readonly ORDER_BY = 24;
static readonly ASC = 25;
static readonly DESC = 26;
static readonly DQUOTED_STRING_LITERAL = 27;
static readonly SQUOTED_STRING_LITERAL = 28;
static readonly INTEGER_LITERAL = 29;
static readonly IDENTIFIER = 30;
static readonly IDENTIFIER_WITH_NUMBER = 31;
static readonly FUNCTION_IDENTIFIER_WITH_UNDERSCORE = 32;
static readonly channelNames: string[];
static readonly modeNames: string[];
static readonly ruleNames: string[];
private static readonly _LITERAL_NAMES;
private static readonly _SYMBOLIC_NAMES;
static readonly VOCABULARY: Vocabulary;
get vocabulary(): Vocabulary;
constructor(input: CharStream);
get grammarFileName(): string;
get ruleNames(): string[];
get serializedATN(): string;
get channelNames(): string[];
get modeNames(): string[];
static readonly _serializedATN: string;
static __ATN: ATN;
static get _ATN(): ATN;
}