mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-02 13:24:12 +01:00
150 lines
3.4 KiB
Java
150 lines
3.4 KiB
Java
// $ANTLR 2.7.2: "StdCParser.g" -> "StdCLexer.java"$
|
|
|
|
package processing.app.preproc;
|
|
import java.io.*;
|
|
|
|
import antlr.CommonAST;
|
|
import antlr.DumpASTVisitor;
|
|
|
|
public interface STDCTokenTypes {
|
|
int EOF = 1;
|
|
int NULL_TREE_LOOKAHEAD = 3;
|
|
int LITERAL_typedef = 4;
|
|
int LITERAL_asm = 5;
|
|
int LITERAL_volatile = 6;
|
|
int LCURLY = 7;
|
|
int RCURLY = 8;
|
|
int SEMI = 9;
|
|
int LITERAL_struct = 10;
|
|
int LITERAL_union = 11;
|
|
int LITERAL_enum = 12;
|
|
int LITERAL_auto = 13;
|
|
int LITERAL_register = 14;
|
|
int LITERAL_extern = 15;
|
|
int LITERAL_static = 16;
|
|
int LITERAL_const = 17;
|
|
int LITERAL_void = 18;
|
|
int LITERAL_char = 19;
|
|
int LITERAL_short = 20;
|
|
int LITERAL_int = 21;
|
|
int LITERAL_long = 22;
|
|
int LITERAL_float = 23;
|
|
int LITERAL_double = 24;
|
|
int LITERAL_signed = 25;
|
|
int LITERAL_unsigned = 26;
|
|
int ID = 27;
|
|
int COMMA = 28;
|
|
int COLON = 29;
|
|
int ASSIGN = 30;
|
|
int STAR = 31;
|
|
int LPAREN = 32;
|
|
int RPAREN = 33;
|
|
int LBRACKET = 34;
|
|
int RBRACKET = 35;
|
|
int VARARGS = 36;
|
|
int LITERAL_while = 37;
|
|
int LITERAL_do = 38;
|
|
int LITERAL_for = 39;
|
|
int LITERAL_goto = 40;
|
|
int LITERAL_continue = 41;
|
|
int LITERAL_break = 42;
|
|
int LITERAL_return = 43;
|
|
int LITERAL_case = 44;
|
|
int LITERAL_default = 45;
|
|
int LITERAL_if = 46;
|
|
int LITERAL_else = 47;
|
|
int LITERAL_switch = 48;
|
|
int DIV_ASSIGN = 49;
|
|
int PLUS_ASSIGN = 50;
|
|
int MINUS_ASSIGN = 51;
|
|
int STAR_ASSIGN = 52;
|
|
int MOD_ASSIGN = 53;
|
|
int RSHIFT_ASSIGN = 54;
|
|
int LSHIFT_ASSIGN = 55;
|
|
int BAND_ASSIGN = 56;
|
|
int BOR_ASSIGN = 57;
|
|
int BXOR_ASSIGN = 58;
|
|
int QUESTION = 59;
|
|
int LOR = 60;
|
|
int LAND = 61;
|
|
int BOR = 62;
|
|
int BXOR = 63;
|
|
int BAND = 64;
|
|
int EQUAL = 65;
|
|
int NOT_EQUAL = 66;
|
|
int LT = 67;
|
|
int LTE = 68;
|
|
int GT = 69;
|
|
int GTE = 70;
|
|
int LSHIFT = 71;
|
|
int RSHIFT = 72;
|
|
int PLUS = 73;
|
|
int MINUS = 74;
|
|
int DIV = 75;
|
|
int MOD = 76;
|
|
int INC = 77;
|
|
int DEC = 78;
|
|
int LITERAL_sizeof = 79;
|
|
int BNOT = 80;
|
|
int LNOT = 81;
|
|
int PTR = 82;
|
|
int DOT = 83;
|
|
int CharLiteral = 84;
|
|
int StringLiteral = 85;
|
|
int IntOctalConst = 86;
|
|
int LongOctalConst = 87;
|
|
int UnsignedOctalConst = 88;
|
|
int IntIntConst = 89;
|
|
int LongIntConst = 90;
|
|
int UnsignedIntConst = 91;
|
|
int IntHexConst = 92;
|
|
int LongHexConst = 93;
|
|
int UnsignedHexConst = 94;
|
|
int FloatDoubleConst = 95;
|
|
int DoubleDoubleConst = 96;
|
|
int LongDoubleConst = 97;
|
|
int NTypedefName = 98;
|
|
int NInitDecl = 99;
|
|
int NDeclarator = 100;
|
|
int NStructDeclarator = 101;
|
|
int NDeclaration = 102;
|
|
int NCast = 103;
|
|
int NPointerGroup = 104;
|
|
int NExpressionGroup = 105;
|
|
int NFunctionCallArgs = 106;
|
|
int NNonemptyAbstractDeclarator = 107;
|
|
int NInitializer = 108;
|
|
int NStatementExpr = 109;
|
|
int NEmptyExpression = 110;
|
|
int NParameterTypeList = 111;
|
|
int NFunctionDef = 112;
|
|
int NCompoundStatement = 113;
|
|
int NParameterDeclaration = 114;
|
|
int NCommaExpr = 115;
|
|
int NUnaryExpr = 116;
|
|
int NLabel = 117;
|
|
int NPostfixExpr = 118;
|
|
int NRangeExpr = 119;
|
|
int NStringSeq = 120;
|
|
int NInitializerElementLabel = 121;
|
|
int NLcurlyInitializer = 122;
|
|
int NAsmAttribute = 123;
|
|
int NGnuAsmExpr = 124;
|
|
int NTypeMissing = 125;
|
|
int Vocabulary = 126;
|
|
int Whitespace = 127;
|
|
int Comment = 128;
|
|
int CPPComment = 129;
|
|
int PREPROC_DIRECTIVE = 130;
|
|
int Space = 131;
|
|
int LineDirective = 132;
|
|
int BadStringLiteral = 133;
|
|
int Escape = 134;
|
|
int Digit = 135;
|
|
int LongSuffix = 136;
|
|
int UnsignedSuffix = 137;
|
|
int FloatSuffix = 138;
|
|
int Exponent = 139;
|
|
int Number = 140;
|
|
}
|