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. | Tbool of Parse_info.t
  11. | Tbyte of Parse_info.t
  12. | Tchar of Parse_info.t
  13. | Tvoid of Parse_info.t
  14. | Tdouble of Parse_info.t
  15. | Tfloat of Parse_info.t
  16. | Tshort of Parse_info.t
  17. | Tint of Parse_info.t
  18. | Tlong of Parse_info.t
  19. | Tstring of Parse_info.t
  20. | Tsbyte of Parse_info.t
  21. | Tushort of Parse_info.t
  22. | Tuint of Parse_info.t
  23. | Tulong of Parse_info.t
  24. | Tclass of Parse_info.t
  25. | Tabstract of Parse_info.t
  26. | Tvirtual of Parse_info.t
  27. | Tdelegate of Parse_info.t
  28. | Tthis of Parse_info.t
  29. | Tinterface of Parse_info.t
  30. | Tnew of Parse_info.t
  31. | Tobject of Parse_info.t
  32. | Tprivate of Parse_info.t
  33. | Tprotected of Parse_info.t
  34. | Tpublic of Parse_info.t
  35. | Treturn of Parse_info.t
  36. | Tbreak of Parse_info.t
  37. | Tcontinue of Parse_info.t
  38. | Tswitch of Parse_info.t
  39. | Tcase of Parse_info.t
  40. | Tdefault of Parse_info.t
  41. | Tenum of Parse_info.t
  42. | Tstruct of Parse_info.t
  43. | Tconst of Parse_info.t
  44. | Tunsafe of Parse_info.t
  45. | Tnamespace of Parse_info.t
  46. | Tusing of Parse_info.t
  47. | Tstatic of Parse_info.t
  48. | Tvolatile of Parse_info.t
  49. | Textern of Parse_info.t
  50. | Tif of Parse_info.t
  51. | Telse of Parse_info.t
  52. | Tdo of Parse_info.t
  53. | Twhile of Parse_info.t
  54. | Tfor of Parse_info.t
  55. | Tforeach of Parse_info.t
  56. | Tgoto of Parse_info.t
  57. | Tthrow of Parse_info.t
  58. | Ttry of Parse_info.t
  59. | Tcatch of Parse_info.t
  60. | Tfinally of Parse_info.t
  61. | Tchecked of Parse_info.t
  62. | Tunchecked of Parse_info.t
  63. | Tnull of Parse_info.t
  64. | Ttrue of Parse_info.t
  65. | Tfalse of Parse_info.t
  66. | Tref of Parse_info.t
  67. | Tout of Parse_info.t
  68. | Tas of Parse_info.t
  69. | Tbase of Parse_info.t
  70. | Tdecimal of Parse_info.t
  71. | Tevent of Parse_info.t
  72. | Texplicit of Parse_info.t
  73. | Tfixed of Parse_info.t
  74. | Timplicit of Parse_info.t
  75. | Tin of Parse_info.t
  76. | Tinternal of Parse_info.t
  77. | Tis of Parse_info.t
  78. | Tlock of Parse_info.t
  79. | Toperator of Parse_info.t
  80. | Toverride of Parse_info.t
  81. | Tparams of Parse_info.t
  82. | Treadonly of Parse_info.t
  83. | Tsealed of Parse_info.t
  84. | Tsizeof of Parse_info.t
  85. | Tstackalloc of Parse_info.t
  86. | Ttypeof of Parse_info.t
  87. | TCppLine of Parse_info.t
  88. | TCppError of Parse_info.t
  89. | TCppWarning of Parse_info.t
  90. | TCppRegion of Parse_info.t
  91. | TCppEndRegion of Parse_info.t
  92. | TDefine of Parse_info.t
  93. | TUndef of Parse_info.t
  94. | TIfdefIf of Parse_info.t
  95. | TIfdefElif of Parse_info.t
  96. | TIfdefElse of Parse_info.t
  97. | TIfdefEndif of Parse_info.t
  98. | TOParen of Parse_info.t
  99. | TCParen of Parse_info.t
  100. | TOBracket of Parse_info.t
  101. | TCBracket of Parse_info.t
  102. | TOBrace of Parse_info.t
  103. | TCBrace of Parse_info.t
  104. | TOAngle of Parse_info.t
  105. | TCAngle of Parse_info.t
  106. | TComma of Parse_info.t
  107. | TColon of Parse_info.t
  108. | TDot of Parse_info.t
  109. | TSemiColon of Parse_info.t
  110. | TStar of Parse_info.t
  111. | TDiv of Parse_info.t
  112. | TPercent of Parse_info.t
  113. | TEq of Parse_info.t
  114. | TEqEq of Parse_info.t
  115. | TNotEq of Parse_info.t
  116. | TPlus of Parse_info.t
  117. | TMinus of Parse_info.t
  118. | TTilde of Parse_info.t
  119. | TAnd of Parse_info.t
  120. | TOr of Parse_info.t
  121. | TXor of Parse_info.t
  122. | TLess of Parse_info.t
  123. | TMore of Parse_info.t
  124. | TMoreEq of Parse_info.t
  125. | TLessEq of Parse_info.t
  126. | TQuestion of Parse_info.t
  127. | TInc of Parse_info.t
  128. | TDec of Parse_info.t
  129. | TBang of Parse_info.t
  130. | TAndAnd of Parse_info.t
  131. | TOrOr of Parse_info.t
  132. | TArrow of Parse_info.t
  133. | TAssignOp of string * Parse_info.t
  134. | TUnknown of Parse_info.t
  135. | EOF of Parse_info.t