package pfff

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