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

@ -1,6 +1,6 @@
open Utilities.Aliases
type key = SuCommand | Unknown
type key = Schema.configuration_key
type token =
| Key of key
| Equal