You can search for identifiers within the package.
in-package search v0.2.0
baguette_sharp
Baguette_sharp.Token
The Token Module
type token_type =
| LEFT_PARENTHESIS
| RIGHT_PARENTHESIS
| KEYWORD of string
| QUOTE
| SEMI_COLON
| INT_TOKEN of int
| FLOAT_TOKEN of float
| NULL_TOKEN
| STRING_TOKEN of string
| BOOL_TOKEN of bool
| ARRAY_BEGIN
| PARAM_BEGIN
| ARRAY_END
| PARAM_END
| COMMENT
| COMMA
Type of tokens
val string_to_token : string -> token_type
Parses a string into a token
val recognized_token : string list
A list of token recognized by the lexer
val token_to_string : token_type -> string
Transforms a token into a string
val token_to_litteral_string : token_type -> string
Transforms the value of a token into a string
val pretty_print : Format.formatter -> token_type -> unit
Pretty print a token
val print_token_list : token_type list -> unit
Prints a list of token