summaryrefslogtreecommitdiff
path: root/src/Values.ml
diff options
context:
space:
mode:
authorSon Ho2021-11-30 20:59:30 +0100
committerSon Ho2021-11-30 20:59:30 +0100
commit7963e3ee84090b96308eebc68ee20532ea85c532 (patch)
tree566ddf1e10b74d9cfa4111869369d9d1649e35fe /src/Values.ml
parent4caa42db826999e4df74e2e3abf80f2b4c2650fa (diff)
Introduce [binder] and use them in place of [var] in the environments
Diffstat (limited to 'src/Values.ml')
-rw-r--r--src/Values.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Values.ml b/src/Values.ml
index 330f22d3..c7a79eae 100644
--- a/src/Values.ml
+++ b/src/Values.ml
@@ -17,6 +17,7 @@ module AbstractionId = IdGen ()
module RegionId = IdGen ()
+(* TODO: move *)
type var = {
index : VarId.id; (** Unique variable identifier *)
name : string option;
@@ -26,6 +27,7 @@ type var = {
function definitions *)
}
[@@deriving show]
+(** A variable, as used in a type definition *)
(** A variable *)