summaryrefslogtreecommitdiff
path: root/compiler/SymbolicToPure.ml
diff options
context:
space:
mode:
authorEscherichia2024-03-26 12:14:32 +0100
committerEscherichia2024-03-28 15:30:32 +0100
commit7a304e990d80dc052f63f66401544040fa0f2728 (patch)
tree584a2f38ad0f80601654af0e9fcf9d3b96d901ac /compiler/SymbolicToPure.ml
parentd6ea35868e30bbc7542bfa09bb04d5b6cbe93b22 (diff)
added a meta option field to norm_ctx and changed the meta used by some assert to the norm_ctx one
Diffstat (limited to 'compiler/SymbolicToPure.ml')
-rw-r--r--compiler/SymbolicToPure.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/SymbolicToPure.ml b/compiler/SymbolicToPure.ml
index 63605b9c..b62966bd 100644
--- a/compiler/SymbolicToPure.ml
+++ b/compiler/SymbolicToPure.ml
@@ -973,7 +973,7 @@ let translate_fun_sig_with_regions_hierarchy_to_decomposed (meta : Meta.meta)
(* Normalize the signature *)
let sg =
let ({ A.inputs; output; _ } : A.fun_sig) = sg in
- let norm = AssociatedTypes.ctx_normalize_ty ctx in
+ let norm = AssociatedTypes.ctx_normalize_ty meta ctx in
let inputs = List.map norm inputs in
let output = norm output in
{ sg with A.inputs; output }