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/configuration/expression_parser.mly | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/configuration/expression_parser.mly') diff --git a/lib/configuration/expression_parser.mly b/lib/configuration/expression_parser.mly index 18b79c8..1761cce 100644 --- a/lib/configuration/expression_parser.mly +++ b/lib/configuration/expression_parser.mly @@ -36,8 +36,8 @@ path_: | COLUMN column = IDENT { ImportExpression.T.Path - Syntax.Path.{ alias = None - ; column = ImportCSV.Csv.column_of_string column + ImportDataTypes.Path.{ alias = None + ; column = ImportDataTypes.Path.column_of_string column } } @@ -46,14 +46,14 @@ path_: DOT column = IDENT { ImportExpression.T.Path - Syntax.Path.{ alias = Some table - ; column = ImportCSV.Csv.column_of_string column} + ImportDataTypes.Path.{ alias = Some table + ; column = ImportDataTypes.Path.column_of_string column} } column_: | COLUMN column = IDENT - { try ImportExpression.T.Path (ImportCSV.Csv.column_of_string column) + { try ImportExpression.T.Path (ImportDataTypes.Path.column_of_string column) with _ -> ImportExpression.T.Literal column } arguments(PATH): -- cgit v1.2.3