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/analysers/printers.ml | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'lib/analysers/printers.ml')
-rw-r--r-- | lib/analysers/printers.ml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/analysers/printers.ml b/lib/analysers/printers.ml index 1c73c13..3dc2f02 100644 --- a/lib/analysers/printers.ml +++ b/lib/analysers/printers.ml @@ -1,10 +1,9 @@ -module Syntax = ImportConf.Syntax module Table = ImportDataTypes.Table module Path = ImportDataTypes.Path -let path : conf:Syntax.t -> Format.formatter -> Path.t -> unit = +let path : conf:ImporterSyntax.t -> Format.formatter -> Path.t -> unit = fun ~conf buffer { alias; column } -> - let table = ImportConf.get_table_for_name conf alias in + let table = ImporterSyntax.get_table_for_name conf alias in Format.fprintf buffer "%s" (Table.print_column table ("col_" ^ string_of_int column)) |