diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 09:11:25 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2025-03-17 18:59:32 +0100 |
commit | 8b8b730d3ba98d6c9e4e6274844641043b5fefbb (patch) | |
tree | 4cb60dafa05b479d0ca287d501a51db88cecaaa4 /lib/configuration/importConf.mli | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'lib/configuration/importConf.mli')
-rw-r--r-- | lib/configuration/importConf.mli | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/configuration/importConf.mli b/lib/configuration/importConf.mli index 40b985b..d2f65f2 100644 --- a/lib/configuration/importConf.mli +++ b/lib/configuration/importConf.mli @@ -1,18 +1,4 @@ -module Syntax = Syntax -module CTE = Cte - -val dummy_conf : Syntax.t - -val root_table : Syntax.t -> ImportDataTypes.Table.t -(** Get the root table, this table is the main table to load and each line in - this table will be processed *) - -val t_of_toml : Otoml.t -> (Syntax.t, string) result -val get_table_for_name : Syntax.t -> string option -> ImportDataTypes.Table.t - -val get_dependancies_for_table : - Syntax.t -> ImportDataTypes.Table.t -> Syntax.Extern.t list -(** Get all the externals refered by the source *) +val t_of_toml : Otoml.t -> (ImporterSyntax.t, string) result val expression_from_string : string -> (ImportDataTypes.Path.t ImportExpression.T.t, string) result |