checkpoint before case

This commit is contained in:
2024-08-02 21:39:39 -07:00
parent 0bb2d48d72
commit 067a83960d
6 changed files with 37 additions and 14 deletions

View File

@@ -231,12 +231,12 @@ record MetaContext where
public export
data Def = Axiom | TCon (List String) | DCon Nat | Fn Tm
data Def = Axiom | TCon (List String) | DCon Nat String | Fn Tm
Show Def where
show Axiom = "axiom"
show (TCon strs) = "TCon \{show strs}"
show (DCon k) = "DCon \{show k}"
show (DCon k tyname) = "DCon \{show k} \{show tyname}"
show (Fn t) = "Fn \{show t}"
||| entry in the top level context