Up

module Annot_parser

: sig
#
type token =
# | TVersion
# | TVNum of string
# | TSemi
# | TRequires
# | TProvides
# | TOTHER of string
# | TIdent of string
# | TComma
# | TA_Shallow
# | TA_Pure
# | TA_Mutator
# | TA_Mutable
# | TA_Const
# | RPARENT
# | LT
# | LPARENT
# | LE
# | GT
# | GE
# | EQ
# | EOL
# | EOF
#
exception Error
#
val annot : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Primitive.t
end