package camlp4

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type camlp4_token = Sig.camlp4_token =
  1. | KEYWORD of string
  2. | SYMBOL of string
  3. | LIDENT of string
  4. | UIDENT of string
  5. | ESCAPED_IDENT of string
  6. | INT of int * string
  7. | INT32 of int32 * string
  8. | INT64 of int64 * string
  9. | NATIVEINT of nativeint * string
  10. | FLOAT of float * string
  11. | CHAR of char * string
  12. | STRING of string * string
  13. | LABEL of string
  14. | OPTLABEL of string
  15. | QUOTATION of Sig.quotation
  16. | ANTIQUOT of string * string
  17. | COMMENT of string
  18. | BLANKS of string
  19. | NEWLINE
  20. | LINE_DIRECTIVE of int * string option
  21. | EOI
module Id : Sig.Id
module Loc : Sig.Loc
module Ast : sig ... end
module Token : sig ... end
module Lexer : sig ... end
module Gram : sig ... end
module Quotation : sig ... end
module AstFilters : sig ... end
module Syntax : sig ... end
module Printers : sig ... end
module MakeGram (Lexer : sig ... end) : sig ... end
module MakeSyntax (U : sig ... end) : Sig.Syntax