package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | TCommentSpace of Parse_info.t
  2. | TCommentNewline of Parse_info.t
  3. | TComment of Parse_info.t
  4. | TCommentMisc of Parse_info.t
  5. | TInt of string * Parse_info.t
  6. | TFloat of string * Parse_info.t
  7. | TChar of string * Parse_info.t
  8. | TString of string * Parse_info.t
  9. | TIdent of string * Parse_info.t
  10. | Tif of Parse_info.t
  11. | Telse of Parse_info.t
  12. | Twhile of Parse_info.t
  13. | Tfor of Parse_info.t
  14. | Tloop of Parse_info.t
  15. | Tbreak of Parse_info.t
  16. | Tcontinue of Parse_info.t
  17. | Treturn of Parse_info.t
  18. | Tlet of Parse_info.t
  19. | Tin of Parse_info.t
  20. | Tmatch of Parse_info.t
  21. | Ttrue of Parse_info.t
  22. | Tfalse of Parse_info.t
  23. | Tfn of Parse_info.t
  24. | Ttype of Parse_info.t
  25. | Tenum of Parse_info.t
  26. | Tstruct of Parse_info.t
  27. | Ttrait of Parse_info.t
  28. | Timpl of Parse_info.t
  29. | Tself of Parse_info.t
  30. | Tsuper of Parse_info.t
  31. | Tcrate of Parse_info.t
  32. | Tuse of Parse_info.t
  33. | Tstatic of Parse_info.t
  34. | Textern of Parse_info.t
  35. | Tpub of Parse_info.t
  36. | Tpriv of Parse_info.t
  37. | Tmut of Parse_info.t
  38. | Tas of Parse_info.t
  39. | Tbox of Parse_info.t
  40. | Tref of Parse_info.t
  41. | Tmod of Parse_info.t
  42. | Tproc of Parse_info.t
  43. | Tunsafe of Parse_info.t
  44. | TCppLine of Parse_info.t
  45. | TOParen of Parse_info.t
  46. | TCParen of Parse_info.t
  47. | TOBracket of Parse_info.t
  48. | TCBracket of Parse_info.t
  49. | TOBrace of Parse_info.t
  50. | TCBrace of Parse_info.t
  51. | TOAngle of Parse_info.t
  52. | TCAngle of Parse_info.t
  53. | TComma of Parse_info.t
  54. | TColon of Parse_info.t
  55. | TColonColon of Parse_info.t
  56. | TSemiColon of Parse_info.t
  57. | TStar of Parse_info.t
  58. | TDiv of Parse_info.t
  59. | TPercent of Parse_info.t
  60. | TEq of Parse_info.t
  61. | TEqEq of Parse_info.t
  62. | TNotEq of Parse_info.t
  63. | TPlus of Parse_info.t
  64. | TMinus of Parse_info.t
  65. | TTilde of Parse_info.t
  66. | TAnd of Parse_info.t
  67. | TOr of Parse_info.t
  68. | TXor of Parse_info.t
  69. | TLess of Parse_info.t
  70. | TMore of Parse_info.t
  71. | TMoreEq of Parse_info.t
  72. | TLessEq of Parse_info.t
  73. | TAndAnd of Parse_info.t
  74. | TOrOr of Parse_info.t
  75. | TArrow of Parse_info.t
  76. | TDot of Parse_info.t
  77. | TPound of Parse_info.t
  78. | TAssignOp of string * Parse_info.t
  79. | TUnknown of Parse_info.t
  80. | EOF of Parse_info.t