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/expression_parser.mly | |
parent | 7bfbb67d83011f3e1845dcb9e44c3b6a5e93a9da (diff) |
Moved the syntax module in its own library
Diffstat (limited to 'lib/configuration/expression_parser.mly')
-rw-r--r-- | lib/configuration/expression_parser.mly | 10 |
1 files changed, 5 insertions, 5 deletions
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): |