@amplitude/ampli
Version:
Amplitude CLI
116 lines (115 loc) • 4.11 kB
TypeScript
import { ATN } from "antlr4ts/atn/ATN";
import { CharStream } from "antlr4ts/CharStream";
import { Lexer } from "antlr4ts/Lexer";
import { Vocabulary } from "antlr4ts/Vocabulary";
export declare class GoLexer extends Lexer {
static readonly BREAK = 1;
static readonly DEFAULT = 2;
static readonly FUNC = 3;
static readonly INTERFACE = 4;
static readonly SELECT = 5;
static readonly CASE = 6;
static readonly DEFER = 7;
static readonly GO = 8;
static readonly MAP = 9;
static readonly STRUCT = 10;
static readonly CHAN = 11;
static readonly ELSE = 12;
static readonly GOTO = 13;
static readonly PACKAGE = 14;
static readonly SWITCH = 15;
static readonly CONST = 16;
static readonly FALLTHROUGH = 17;
static readonly IF = 18;
static readonly RANGE = 19;
static readonly TYPE = 20;
static readonly CONTINUE = 21;
static readonly FOR = 22;
static readonly IMPORT = 23;
static readonly RETURN = 24;
static readonly VAR = 25;
static readonly NIL_LIT = 26;
static readonly IDENTIFIER = 27;
static readonly L_PAREN = 28;
static readonly R_PAREN = 29;
static readonly L_CURLY = 30;
static readonly R_CURLY = 31;
static readonly L_BRACKET = 32;
static readonly R_BRACKET = 33;
static readonly ASSIGN = 34;
static readonly COMMA = 35;
static readonly SEMI = 36;
static readonly COLON = 37;
static readonly DOT = 38;
static readonly PLUS_PLUS = 39;
static readonly MINUS_MINUS = 40;
static readonly DECLARE_ASSIGN = 41;
static readonly ELLIPSIS = 42;
static readonly LOGICAL_OR = 43;
static readonly LOGICAL_AND = 44;
static readonly EQUALS = 45;
static readonly NOT_EQUALS = 46;
static readonly LESS = 47;
static readonly LESS_OR_EQUALS = 48;
static readonly GREATER = 49;
static readonly GREATER_OR_EQUALS = 50;
static readonly OR = 51;
static readonly DIV = 52;
static readonly MOD = 53;
static readonly LSHIFT = 54;
static readonly RSHIFT = 55;
static readonly BIT_CLEAR = 56;
static readonly EXCLAMATION = 57;
static readonly PLUS = 58;
static readonly MINUS = 59;
static readonly CARET = 60;
static readonly STAR = 61;
static readonly AMPERSAND = 62;
static readonly RECEIVE = 63;
static readonly DECIMAL_LIT = 64;
static readonly BINARY_LIT = 65;
static readonly OCTAL_LIT = 66;
static readonly HEX_LIT = 67;
static readonly FLOAT_LIT = 68;
static readonly DECIMAL_FLOAT_LIT = 69;
static readonly HEX_FLOAT_LIT = 70;
static readonly IMAGINARY_LIT = 71;
static readonly RUNE_LIT = 72;
static readonly BYTE_VALUE = 73;
static readonly OCTAL_BYTE_VALUE = 74;
static readonly HEX_BYTE_VALUE = 75;
static readonly LITTLE_U_VALUE = 76;
static readonly BIG_U_VALUE = 77;
static readonly RAW_STRING_LIT = 78;
static readonly INTERPRETED_STRING_LIT = 79;
static readonly WS = 80;
static readonly COMMENT = 81;
static readonly TERMINATOR = 82;
static readonly LINE_COMMENT = 83;
static readonly WS_NLSEMI = 84;
static readonly COMMENT_NLSEMI = 85;
static readonly LINE_COMMENT_NLSEMI = 86;
static readonly EOS = 87;
static readonly OTHER = 88;
static readonly NLSEMI = 1;
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[];
private static readonly _serializedATNSegments;
private static readonly _serializedATNSegment0;
private static readonly _serializedATNSegment1;
private static readonly _serializedATNSegment2;
static readonly _serializedATN: string;
static __ATN: ATN;
static get _ATN(): ATN;
}