package opam-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | STRING of string
  2. | IDENT of string
  3. | BOOL of bool
  4. | EOF
  5. | LBRACKET
  6. | RBRACKET
  7. | LPAR
  8. | RPAR
  9. | LBRACE
  10. | RBRACE
  11. | COLON
  12. | INT of int
  13. | RELOP of OpamTypes.relop
  14. | LOGOP of OpamTypes.logop
  15. | PFXOP of OpamTypes.pfxop
  16. | ENVOP of string
val main : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> string -> OpamTypes.file