Enum PythonLexerToken
Represents lexical tokens for Python parser.
public enum PythonLexerToken
Fields
And = 0As = 1Assert = 2Assign = 53Async = 3Await = 4Bang = 52Bitwise_and = 56Bitwise_or = 57Bool = 92Break = 5Byte_Literal = 99Carret = 63Cav = 48Char = 90Character_Literal = 97Class = 6Close_brace = 37Close_bracket = 39Close_parens = 41Colon = 45Comma = 44Comment_Literal = 103Continue = 7CustomIdentifier_Literal = 105DblDiv = 62DblStar = 59Dbl_div_assign = 76Dbl_mult_assign = 74Decorator = 49Def = 8Del = 9Div = 61Dollar = 64Dot = 43Double = 89Double_Literal = 95Elif = 10Ellipsis = 42Else = 11Except = 12Exec = 13False = 14Finally = 15Float = 88Float_Literal = 94For = 16From = 17Global = 18Identifier_Literal = 100If = 19Imag_Literal = 96Import = 20In = 21Int = 87IntDiv = 65Integer_Literal = 93Interr = 66Is = 22Lambda = 23LineContinuation = 67Method_Literal = 101Minus = 51None = 24Nonlocal = 25Not = 26Op_add_assign = 79Op_and_assign = 84Op_div_assign = 77Op_eq = 72Op_ge = 71Op_gt = 55Op_le = 70Op_lt = 54Op_mod_assign = 78Op_mult_assign = 75Op_ne = 73Op_or_assign = 86Op_ptr = 81Op_shift_left = 68Op_shift_left_assign = 82Op_shift_right = 69Op_shift_right_assign = 83Op_sub_assign = 80Op_xor_assign = 85Open_brace = 36Open_bracket = 38Open_parens = 40Or = 27Pass = 28Percent = 60Plus = 50Raise = 29Return = 30Semicolon = 46Star = 58String = 91String_Literal = 98Tilde = 47True = 31Try = 32Type_Literal = 102While = 33Whitespace_Literal = 104With = 34Yield = 35