From 8b8b730d3ba98d6c9e4e6274844641043b5fefbb Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Mon, 17 Mar 2025 09:11:25 +0100 Subject: Moved the syntax module in its own library --- lib/analysers/printers.ml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/analysers/printers.ml') 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)) -- cgit v1.2.3