catala/compiler/desugared
Louis Gesbert fea01cfe4c Add overloaded operators for the common operations
This uses the same disambiguation mechanism put in place for
structures, calling the typer on individual rules on the desugared AST
to propagate types, in order to resolve ambiguous operators like `+`
to their strongly typed counterparts (`+!`, `+.`, `+$`, `+@`, `+$`) in
the translation to scopelang.

The patch includes some normalisation of the definition of all the
operators, and classifies them based on their typing policy instead of
their arity. It also adds a little more flexibility:
- a couple new operators, like `-` on date and duration
- optional type annotation on some aggregation constructions

The `Shared_ast` lib is also lightly restructured, with the `Expr`
module split into `Type`, `Operator` and `Expr`.
2022-12-13 11:55:24 +01:00
..
ast.ml Add overloaded operators for the common operations 2022-12-13 11:55:24 +01:00
ast.mli Rename utils to catala_utils 2022-11-28 16:38:09 +01:00
dependency.ml Rename utils to catala_utils 2022-11-28 16:38:09 +01:00
dependency.mli Rename utils to catala_utils 2022-11-28 16:38:09 +01:00
desugared.mld Used shared_ast for scopelang expressions 2022-08-26 11:31:14 +02:00
disambiguate.ml Add typing-based disambiguation pass after desugaring 2022-11-28 16:38:09 +01:00
disambiguate.mli Add typing-based disambiguation pass after desugaring 2022-11-28 16:38:09 +01:00
dune Rename utils to catala_utils 2022-11-28 16:38:09 +01:00
from_surface.ml Add overloaded operators for the common operations 2022-12-13 11:55:24 +01:00
from_surface.mli Uniform naming of conversion modules across compilation passes 2022-11-22 12:08:18 +01:00
name_resolution.ml Add ambiguous StructAccess for desugared 2022-11-28 16:38:09 +01:00
name_resolution.mli Add ambiguous StructAccess for desugared 2022-11-28 16:38:09 +01:00