OCaml: Implement configuration parser, bind lexer tokens with schema

This commit is contained in:
Juno Takano 2025-05-08 23:10:14 -03:00
commit b0c65f40b1
12 changed files with 187 additions and 41 deletions

View file

@ -0,0 +1,7 @@
type token = Lexer.token
type schema = Schema.schema
type config = Schema.main
val parse : token list -> config
val apply : schema -> config -> schema
val string_of_config : config -> string