token.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* Token types */
  2. #ifndef Py_LIMITED_API
  3. #ifndef Py_TOKEN_H
  4. #define Py_TOKEN_H
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. #undef TILDE /* Prevent clash of our definition with system macro. Ex AIX, ioctl.h */
  9. #define ENDMARKER 0
  10. #define NAME 1
  11. #define NUMBER 2
  12. #define STRING 3
  13. #define NEWLINE 4
  14. #define INDENT 5
  15. #define DEDENT 6
  16. #define LPAR 7
  17. #define RPAR 8
  18. #define LSQB 9
  19. #define RSQB 10
  20. #define COLON 11
  21. #define COMMA 12
  22. #define SEMI 13
  23. #define PLUS 14
  24. #define MINUS 15
  25. #define STAR 16
  26. #define SLASH 17
  27. #define VBAR 18
  28. #define AMPER 19
  29. #define LESS 20
  30. #define GREATER 21
  31. #define EQUAL 22
  32. #define DOT 23
  33. #define PERCENT 24
  34. #define LBRACE 25
  35. #define RBRACE 26
  36. #define EQEQUAL 27
  37. #define NOTEQUAL 28
  38. #define LESSEQUAL 29
  39. #define GREATEREQUAL 30
  40. #define TILDE 31
  41. #define CIRCUMFLEX 32
  42. #define LEFTSHIFT 33
  43. #define RIGHTSHIFT 34
  44. #define DOUBLESTAR 35
  45. #define PLUSEQUAL 36
  46. #define MINEQUAL 37
  47. #define STAREQUAL 38
  48. #define SLASHEQUAL 39
  49. #define PERCENTEQUAL 40
  50. #define AMPEREQUAL 41
  51. #define VBAREQUAL 42
  52. #define CIRCUMFLEXEQUAL 43
  53. #define LEFTSHIFTEQUAL 44
  54. #define RIGHTSHIFTEQUAL 45
  55. #define DOUBLESTAREQUAL 46
  56. #define DOUBLESLASH 47
  57. #define DOUBLESLASHEQUAL 48
  58. #define AT 49
  59. #define ATEQUAL 50
  60. #define RARROW 51
  61. #define ELLIPSIS 52
  62. /* Don't forget to update the table _PyParser_TokenNames in tokenizer.c! */
  63. #define OP 53
  64. #define AWAIT 54
  65. #define ASYNC 55
  66. #define ERRORTOKEN 56
  67. #define N_TOKENS 57
  68. /* Special definitions for cooperation with parser */
  69. #define NT_OFFSET 256
  70. #define ISTERMINAL(x) ((x) < NT_OFFSET)
  71. #define ISNONTERMINAL(x) ((x) >= NT_OFFSET)
  72. #define ISEOF(x) ((x) == ENDMARKER)
  73. PyAPI_DATA(const char *) _PyParser_TokenNames[]; /* Token names */
  74. PyAPI_FUNC(int) PyToken_OneChar(int);
  75. PyAPI_FUNC(int) PyToken_TwoChars(int, int);
  76. PyAPI_FUNC(int) PyToken_ThreeChars(int, int, int);
  77. #ifdef __cplusplus
  78. }
  79. #endif
  80. #endif /* !Py_TOKEN_H */
  81. #endif /* Py_LIMITED_API */