aboutsummaryrefslogtreecommitdiff
path: root/src/nbe/Syntax.ml
diff options
context:
space:
mode:
authorMalte Voos <git@mal.tc>2024-07-08 22:10:12 +0200
committerMalte Voos <git@mal.tc>2024-07-08 22:10:12 +0200
commit66cf5d3c5fff84a1cac333c1aa81a8e1f21ee6f4 (patch)
treebfbd237f12a3b973d0b93556e6235ced045db701 /src/nbe/Syntax.ml
parent97f84ccace4e634b4e02178a702818e69292dc9f (diff)
downloadtoytt-66cf5d3c5fff84a1cac333c1aa81a8e1f21ee6f4.tar.gz
toytt-66cf5d3c5fff84a1cac333c1aa81a8e1f21ee6f4.zip
rename Ident -> Name
Diffstat (limited to 'src/nbe/Syntax.ml')
-rw-r--r--src/nbe/Syntax.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nbe/Syntax.ml b/src/nbe/Syntax.ml
index 5de5281..859102a 100644
--- a/src/nbe/Syntax.ml
+++ b/src/nbe/Syntax.ml
@@ -1,10 +1,10 @@
type t = Data.syn =
| Var of int
- | Def of Ident.t * Data.value Lazy.t
- | Pi of Ident.local * t * (* BINDS *) t
- | Lam of Ident.local * (* BINDS *) t
+ | Def of Name.t * Data.value Lazy.t
+ | Pi of Name.local * t * (* BINDS *) t
+ | Lam of Name.local * (* BINDS *) t
| App of t * t
- | Sg of Ident.local * t * (* BINDS *) t
+ | Sg of Name.local * t * (* BINDS *) t
| Pair of t * t
| Fst of t
| Snd of t
@@ -13,7 +13,7 @@ type t = Data.syn =
| True
| False
| BoolElim of {
- motive_var : Ident.local;
+ motive_var : Name.local;
motive : (* BINDS *) t;
true_case : t;
false_case : t;