summaryrefslogtreecommitdiff
path: root/compiler/LlbcAst.ml
blob: 9772671e6e01e06677fa53880b56248cd2365912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
open Types
open Values
include Charon.LlbcAst

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;
}
[@@deriving show]