catala/compiler/lcalc
Louis Gesbert b329afbbdb Rename all Map/Set calls accordingly
This is just a bunch of `sed` calls:
```shell
sed -i 's/ScopeSet/ScopeName.Set/g' compiler/**/*.ml*
sed -i 's/ScopeMap/ScopeName.Map/g' compiler/**/*.ml*
sed -i 's/StructMap/StructName.Map/g' compiler/**/*.ml*
sed -i 's/StructSet/StructName.Set/g' compiler/**/*.ml*
sed -i 's/EnumMap/EnumName.Map/g' compiler/**/*.ml*
sed -i 's/EnumSet/EnumName.Set/g' compiler/**/*.ml*
sed -i 's/StructFieldName/StructField/g' compiler/**/*.ml*
sed -i 's/StructFieldMap/StructField.Map/g' compiler/**/*.ml*
sed -i 's/StructFieldSet/StructField.Set/g' compiler/**/*.ml*
sed -i 's/EnumConstructorMap/EnumConstructor.Map/g' compiler/**/*.ml*
sed -i 's/EnumConstructorSet/EnumConstructor.Set/g' compiler/**/*.ml*
sed -i 's/RuleMap/RuleName.Map/g' compiler/**/*.ml*
sed -i 's/RuleSet/RuleName.Set/g' compiler/**/*.ml*
sed -i 's/LabelMap/LabelName.Map/g' compiler/**/*.ml*
sed -i 's/LabelSet/LabelName.Set/g' compiler/**/*.ml*
sed -i 's/ScopeVarMap/ScopeVar.Map/g' compiler/**/*.ml*
sed -i 's/ScopeVarSet/ScopeVar.Set/g' compiler/**/*.ml*
sed -i 's/SubScopeNameMap/SubScopeName.Map/g' compiler/**/*.ml*
sed -i 's/SubScopeNameSet/SubScopeName.Set/g' compiler/**/*.ml*
```

... and reformat
2022-11-28 16:38:09 +01:00
..
ast.ml Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00
ast.mli Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00
closure_conversion.ml Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00
closure_conversion.mli Reformat 2022-07-11 17:42:34 +02:00
compile_with_exceptions.ml Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00
compile_with_exceptions.mli Porting the interpreter to the marked AST 2022-07-11 17:42:30 +02:00
compile_without_exceptions.ml Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00
compile_without_exceptions.mli Porting the interpreter to the marked AST 2022-07-11 17:42:30 +02:00
dune refactor(compiler): remove the camomile dependency due to the new Utils.String_common module based on Ubase 2022-08-05 10:55:45 +02:00
from_dcalc.ml Uniform naming of conversion modules across compilation passes 2022-11-22 12:08:18 +01:00
from_dcalc.mli Uniform naming of conversion modules across compilation passes 2022-11-22 12:08:18 +01:00
lcalc.mld Link to modules in the docs 2022-02-14 18:27:29 +01:00
optimizations.ml Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00
optimizations.mli Leverage the shared AST: big cleanup (part I) 2022-08-22 19:28:21 +02:00
to_ocaml.ml Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00
to_ocaml.mli Rename all Map/Set calls accordingly 2022-11-28 16:38:09 +01:00