diff options
Diffstat (limited to 'compiler/LlbcAst.ml')
-rw-r--r-- | compiler/LlbcAst.ml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/compiler/LlbcAst.ml b/compiler/LlbcAst.ml index f4d26e18..9772671e 100644 --- a/compiler/LlbcAst.ml +++ b/compiler/LlbcAst.ml @@ -2,15 +2,13 @@ open Types open Values include Charon.LlbcAst -type abs_region_group = (AbstractionId.id, RegionId.id) g_region_group -[@@deriving show] - -type abs_region_groups = (AbstractionId.id, RegionId.id) g_region_groups -[@@deriving show] +type abs_region_group = AbstractionId.id g_region_group [@@deriving show] +type abs_region_groups = abs_region_group list [@@deriving show] (** A function signature, after instantiation *) type inst_fun_sig = { regions_hierarchy : abs_region_groups; + trait_type_constraints : trait_type_constraint list; inputs : rty list; output : rty; } |