package pfff

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | TUnknown of Parse_info.t
  2. | EOF of Parse_info.t
  3. | TCommentSpace of Parse_info.t
  4. | TCommentNewline of Parse_info.t
  5. | TComment of Parse_info.t
  6. | TComment_Pp of Token_cpp.cppcommentkind * Parse_info.t
  7. | TComment_Cpp of Token_cpp.cpluspluscommentkind * Parse_info.t
  8. | TInt of string * Parse_info.t
  9. | TFloat of (string * Cst_cpp.floatType) * Parse_info.t
  10. | TChar of (string * Cst_cpp.isWchar) * Parse_info.t
  11. | TString of (string * Cst_cpp.isWchar) * Parse_info.t
  12. | TIdent of string * Parse_info.t
  13. | TIdent_Typedef of string * Parse_info.t
  14. | TOPar of Parse_info.t
  15. | TCPar of Parse_info.t
  16. | TOBrace of Parse_info.t
  17. | TCBrace of Parse_info.t
  18. | TOCro of Parse_info.t
  19. | TCCro of Parse_info.t
  20. | TDot of Parse_info.t
  21. | TComma of Parse_info.t
  22. | TPtrOp of Parse_info.t
  23. | TInc of Parse_info.t
  24. | TDec of Parse_info.t
  25. | TAssign of Cst_cpp.assignOp * Parse_info.t
  26. | TEq of Parse_info.t
  27. | TWhy of Parse_info.t
  28. | TTilde of Parse_info.t
  29. | TBang of Parse_info.t
  30. | TEllipsis of Parse_info.t
  31. | TCol of Parse_info.t
  32. | TPtVirg of Parse_info.t
  33. | TOrLog of Parse_info.t
  34. | TAndLog of Parse_info.t
  35. | TOr of Parse_info.t
  36. | TXor of Parse_info.t
  37. | TAnd of Parse_info.t
  38. | TEqEq of Parse_info.t
  39. | TNotEq of Parse_info.t
  40. | TInfEq of Parse_info.t
  41. | TSupEq of Parse_info.t
  42. | TShl of Parse_info.t
  43. | TShr of Parse_info.t
  44. | TPlus of Parse_info.t
  45. | TMinus of Parse_info.t
  46. | TMul of Parse_info.t
  47. | TDiv of Parse_info.t
  48. | TMod of Parse_info.t
  49. | TInf of Parse_info.t
  50. | TSup of Parse_info.t
  51. | Tchar of Parse_info.t
  52. | Tshort of Parse_info.t
  53. | Tint of Parse_info.t
  54. | Tdouble of Parse_info.t
  55. | Tfloat of Parse_info.t
  56. | Tlong of Parse_info.t
  57. | Tunsigned of Parse_info.t
  58. | Tsigned of Parse_info.t
  59. | Tvoid of Parse_info.t
  60. | Tauto of Parse_info.t
  61. | Tregister of Parse_info.t
  62. | Textern of Parse_info.t
  63. | Tstatic of Parse_info.t
  64. | Ttypedef of Parse_info.t
  65. | Tconst of Parse_info.t
  66. | Tvolatile of Parse_info.t
  67. | Tstruct of Parse_info.t
  68. | Tunion of Parse_info.t
  69. | Tenum of Parse_info.t
  70. | Tbreak of Parse_info.t
  71. | Telse of Parse_info.t
  72. | Tswitch of Parse_info.t
  73. | Tcase of Parse_info.t
  74. | Tcontinue of Parse_info.t
  75. | Tfor of Parse_info.t
  76. | Tdo of Parse_info.t
  77. | Tif of Parse_info.t
  78. | Twhile of Parse_info.t
  79. | Treturn of Parse_info.t
  80. | Tgoto of Parse_info.t
  81. | Tdefault of Parse_info.t
  82. | Tsizeof of Parse_info.t
  83. | Trestrict of Parse_info.t
  84. | Tasm of Parse_info.t
  85. | Ttypeof of Parse_info.t
  86. | Tattribute of Parse_info.t
  87. | Tinline of Parse_info.t
  88. | TDefine of Parse_info.t
  89. | TDefParamVariadic of string * Parse_info.t
  90. | TCppEscapedNewline of Parse_info.t
  91. | TIdent_Define of string * Parse_info.t
  92. | TOPar_Define of Parse_info.t
  93. | TCommentNewline_DefineEndOfMacro of Parse_info.t
  94. | TOBrace_DefineInit of Parse_info.t
  95. | TInclude of string * string * Parse_info.t
  96. | TIfdef of Parse_info.t
  97. | TIfdefelse of Parse_info.t
  98. | TIfdefelif of Parse_info.t
  99. | TEndif of Parse_info.t
  100. | TIfdefBool of bool * Parse_info.t
  101. | TIfdefMisc of bool * Parse_info.t
  102. | TIfdefVersion of bool * Parse_info.t
  103. | TUndef of string * Parse_info.t
  104. | TCppDirectiveOther of Parse_info.t
  105. | TIdent_MacroStmt of Parse_info.t
  106. | TIdent_MacroString of Parse_info.t
  107. | TIdent_MacroIterator of string * Parse_info.t
  108. | TIdent_MacroDecl of string * Parse_info.t
  109. | Tconst_MacroDeclConst of Parse_info.t
  110. | TCPar_EOL of Parse_info.t
  111. | TAny_Action of Parse_info.t
  112. | Tclass of Parse_info.t
  113. | Tthis of Parse_info.t
  114. | Tnew of Parse_info.t
  115. | Tdelete of Parse_info.t
  116. | Ttemplate of Parse_info.t
  117. | Ttypeid of Parse_info.t
  118. | Ttypename of Parse_info.t
  119. | Tcatch of Parse_info.t
  120. | Ttry of Parse_info.t
  121. | Tthrow of Parse_info.t
  122. | Toperator of Parse_info.t
  123. | Tpublic of Parse_info.t
  124. | Tprivate of Parse_info.t
  125. | Tprotected of Parse_info.t
  126. | Tfriend of Parse_info.t
  127. | Tvirtual of Parse_info.t
  128. | Tnamespace of Parse_info.t
  129. | Tusing of Parse_info.t
  130. | Tbool of Parse_info.t
  131. | Tfalse of Parse_info.t
  132. | Ttrue of Parse_info.t
  133. | Twchar_t of Parse_info.t
  134. | Tconst_cast of Parse_info.t
  135. | Tdynamic_cast of Parse_info.t
  136. | Tstatic_cast of Parse_info.t
  137. | Treinterpret_cast of Parse_info.t
  138. | Texplicit of Parse_info.t
  139. | Tmutable of Parse_info.t
  140. | Texport of Parse_info.t
  141. | TPtrOpStar of Parse_info.t
  142. | TDotStar of Parse_info.t
  143. | TColCol of Parse_info.t
  144. | TOPar_CplusplusInit of Parse_info.t
  145. | TInf_Template of Parse_info.t
  146. | TSup_Template of Parse_info.t
  147. | TOCro_new of Parse_info.t
  148. | TCCro_new of Parse_info.t
  149. | TInt_ZeroVirtual of Parse_info.t
  150. | TIdent_ClassnameInQualifier of string * Parse_info.t
  151. | TIdent_ClassnameInQualifier_BeforeTypedef of string * Parse_info.t
  152. | TIdent_Templatename of string * Parse_info.t
  153. | TIdent_TemplatenameInQualifier of string * Parse_info.t
  154. | TIdent_TemplatenameInQualifier_BeforeTypedef of string * Parse_info.t
  155. | TIdent_Constructor of string * Parse_info.t
  156. | TIdent_TypedefConstr of string * Parse_info.t
  157. | Tchar_Constr of Parse_info.t
  158. | Tint_Constr of Parse_info.t
  159. | Tfloat_Constr of Parse_info.t
  160. | Tdouble_Constr of Parse_info.t
  161. | Twchar_t_Constr of Parse_info.t
  162. | Tshort_Constr of Parse_info.t
  163. | Tlong_Constr of Parse_info.t
  164. | Tbool_Constr of Parse_info.t
  165. | Tsigned_Constr of Parse_info.t
  166. | Tunsigned_Constr of Parse_info.t
  167. | TColCol_BeforeTypedef of Parse_info.t
val toplevel : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Cst_cpp.toplevel option
val sgrep_spatch_pattern : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Cst_cpp.any