@iotize/tap-scripts
Version:
IoTize Tap scripts
79 lines (78 loc) • 2.95 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 IoTizeTestLexer extends Lexer {
static readonly LineComment = 1;
static readonly LineComment2 = 2;
static readonly SLASH = 3;
static readonly COMMA = 4;
static readonly BRACKET_OPEN = 5;
static readonly BRACKET_CLOSE = 6;
static readonly COLON = 7;
static readonly SEMI_COLON = 8;
static readonly POINT = 9;
static readonly OP_GTE = 10;
static readonly OP_LTE = 11;
static readonly OPP_NQ = 12;
static readonly OP_EQ = 13;
static readonly OPP_NQ2 = 14;
static readonly OP_LT = 15;
static readonly OP_GT = 16;
static readonly END_ERROR = 17;
static readonly END = 18;
static readonly CHECK = 19;
static readonly LOGIN = 20;
static readonly LOGOUT = 21;
static readonly OUTPUT = 22;
static readonly DISCONNECT = 23;
static readonly DISPLAY_VERBOSE_INSTRUCTION = 24;
static readonly DISPLAY_VERBOSE = 25;
static readonly DISPLAY_ERROR_INSTRUCTION = 26;
static readonly DISPLAY_ERROR = 27;
static readonly DISPLAY_INFO_INSTRUCTION = 28;
static readonly DISPLAY_INFO = 29;
static readonly DISPLAY_INSTRUCTION = 30;
static readonly DISPLAY = 31;
static readonly CONNECT = 32;
static readonly CONNECT_RETRY = 33;
static readonly WAIT_INSTRUCTION = 34;
static readonly GET = 35;
static readonly PUT = 36;
static readonly POST = 37;
static readonly GETP = 38;
static readonly GOTO_NOK = 39;
static readonly GOTO_OK = 40;
static readonly GOTOPREFIX = 41;
static readonly CCOM_RAND_START = 42;
static readonly CCOM_AUTO_RAND_START_ON = 43;
static readonly CCOM_AUTO_RAND_START_OFF = 44;
static readonly CCOM_ENABLE = 45;
static readonly CCOM_DISABLE = 46;
static readonly FW_MIN_CHECK = 47;
static readonly FW_MAX_CHECK = 48;
static readonly HEX_ARRAY = 49;
static readonly HEX_INTEGER = 50;
static readonly FLOAT = 51;
static readonly DECIMAL_INTEGER = 52;
static readonly STRING = 53;
static readonly LABEL_NAME = 54;
static readonly EOL = 55;
static readonly WS = 56;
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;
}