File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ data Elab : Type -> Type where
18
18
LogTerm : String -> Nat -> String -> TTImp -> Elab ()
19
19
20
20
-- Elaborate a TTImp term to a concrete value
21
- Check : { expected : Type } -> TTImp -> Elab expected
21
+ Check : TTImp -> Elab expected
22
22
-- Quote a concrete expression back to a TTImp
23
- Quote : val -> Elab TTImp
23
+ Quote : (0 _ : val) -> Elab TTImp
24
24
25
25
-- Elaborate under a lambda
26
26
Lambda : (0 x : Type ) ->
@@ -91,12 +91,12 @@ logGoal str n msg
91
91
||| Check that some TTImp syntax has the expected type
92
92
||| Returns the type checked value
93
93
export
94
- check : { expected : Type } -> TTImp -> Elab expected
94
+ check : TTImp -> Elab expected
95
95
check = Check
96
96
97
97
||| Return TTImp syntax of a given value
98
98
export
99
- quote : val -> Elab TTImp
99
+ quote : (0 _ : val) -> Elab TTImp
100
100
quote = Quote
101
101
102
102
||| Build a lambda expression
You can’t perform that action at this time.
0 commit comments