package coq-lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type token =
  1. | TRUE
  2. | STRING of string * Stdlib.Lexing.position * Stdlib.Lexing.position
  3. | RIGHT_BRACK
  4. | RIGHT_BRACE
  5. | NULL
  6. | LEFT_BRACK
  7. | LEFT_BRACE
  8. | INT of int
  9. | FLOAT of float
  10. | FALSE
  11. | EOF
  12. | COMMA
  13. | COLON
exception Error
val prog : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Json.value option