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. | TCommentMisc of Parse_info.t
  7. | TInt of string * Parse_info.t
  8. | TFloat of string * Parse_info.t
  9. | TChar of string * Parse_info.t
  10. | TString of string * Parse_info.t
  11. | TLowerIdent of string * Parse_info.t
  12. | TUpperIdent of string * Parse_info.t
  13. | TLabelUse of string * Parse_info.t
  14. | TLabelDecl of string * Parse_info.t
  15. | TOptLabelUse of string * Parse_info.t
  16. | TOptLabelDecl of string * Parse_info.t
  17. | Tfun of Parse_info.t
  18. | Tfunction of Parse_info.t
  19. | Trec of Parse_info.t
  20. | Ttype of Parse_info.t
  21. | Tof of Parse_info.t
  22. | Tif of Parse_info.t
  23. | Tthen of Parse_info.t
  24. | Telse of Parse_info.t
  25. | Tmatch of Parse_info.t
  26. | Twith of Parse_info.t
  27. | Twhen of Parse_info.t
  28. | Tlet of Parse_info.t
  29. | Tin of Parse_info.t
  30. | Tas of Parse_info.t
  31. | Ttry of Parse_info.t
  32. | Texception of Parse_info.t
  33. | Tbegin of Parse_info.t
  34. | Tend of Parse_info.t
  35. | Tfor of Parse_info.t
  36. | Tdo of Parse_info.t
  37. | Tdone of Parse_info.t
  38. | Tdownto of Parse_info.t
  39. | Twhile of Parse_info.t
  40. | Tto of Parse_info.t
  41. | Tval of Parse_info.t
  42. | Texternal of Parse_info.t
  43. | Ttrue of Parse_info.t
  44. | Tfalse of Parse_info.t
  45. | Tmodule of Parse_info.t
  46. | Topen of Parse_info.t
  47. | Tfunctor of Parse_info.t
  48. | Tinclude of Parse_info.t
  49. | Tsig of Parse_info.t
  50. | Tstruct of Parse_info.t
  51. | Tclass of Parse_info.t
  52. | Tnew of Parse_info.t
  53. | Tinherit of Parse_info.t
  54. | Tconstraint of Parse_info.t
  55. | Tinitializer of Parse_info.t
  56. | Tmethod of Parse_info.t
  57. | Tobject of Parse_info.t
  58. | Tprivate of Parse_info.t
  59. | Tvirtual of Parse_info.t
  60. | Tlazy of Parse_info.t
  61. | Tmutable of Parse_info.t
  62. | Tassert of Parse_info.t
  63. | Tand of Parse_info.t
  64. | Tor of Parse_info.t
  65. | Tmod of Parse_info.t
  66. | Tlor of Parse_info.t
  67. | Tlsl of Parse_info.t
  68. | Tlsr of Parse_info.t
  69. | Tlxor of Parse_info.t
  70. | Tasr of Parse_info.t
  71. | Tland of Parse_info.t
  72. | TOParen of Parse_info.t
  73. | TCParen of Parse_info.t
  74. | TOBrace of Parse_info.t
  75. | TCBrace of Parse_info.t
  76. | TOBracket of Parse_info.t
  77. | TCBracket of Parse_info.t
  78. | TOBracketPipe of Parse_info.t
  79. | TPipeCBracket of Parse_info.t
  80. | TOBracketLess of Parse_info.t
  81. | TGreaterCBracket of Parse_info.t
  82. | TOBraceLess of Parse_info.t
  83. | TGreaterCBrace of Parse_info.t
  84. | TOBracketGreater of Parse_info.t
  85. | TColonGreater of Parse_info.t
  86. | TDot of Parse_info.t
  87. | TDotDot of Parse_info.t
  88. | TComma of Parse_info.t
  89. | TEq of Parse_info.t
  90. | TAssign of Parse_info.t
  91. | TAssignMutable of Parse_info.t
  92. | TColon of Parse_info.t
  93. | TColonColon of Parse_info.t
  94. | TBang of Parse_info.t
  95. | TBangEq of Parse_info.t
  96. | TTilde of Parse_info.t
  97. | TPipe of Parse_info.t
  98. | TSemiColon of Parse_info.t
  99. | TSemiColonSemiColon of Parse_info.t
  100. | TQuestion of Parse_info.t
  101. | TQuestionQuestion of Parse_info.t
  102. | TUnderscore of Parse_info.t
  103. | TStar of Parse_info.t
  104. | TArrow of Parse_info.t
  105. | TQuote of Parse_info.t
  106. | TBackQuote of Parse_info.t
  107. | TAnd of Parse_info.t
  108. | TAndAnd of Parse_info.t
  109. | TSharp of Parse_info.t
  110. | TMinusDot of Parse_info.t
  111. | TPlusDot of Parse_info.t
  112. | TPlus of Parse_info.t
  113. | TMinus of Parse_info.t
  114. | TLess of Parse_info.t
  115. | TGreater of Parse_info.t
  116. | TPrefixOperator of string * Parse_info.t
  117. | TInfixOperator of string * Parse_info.t
  118. | TBracketAt of Parse_info.t
  119. | TBracketAtAt of Parse_info.t
  120. | TBracketAtAtAt of Parse_info.t
  121. | TBracketPercent of Parse_info.t
  122. | TBracketPercentPercent of Parse_info.t
  123. | TSharpDirective of Parse_info.t
val interface : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Cst_ml.toplevel list
val implementation : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Cst_ml.toplevel list