Fixed use of case*, added TODO about things
This commit is contained in:
parent
04619e1f0b
commit
2fcba80950
|
@ -84,6 +84,7 @@
|
|||
(attribute d.name)
|
||||
(attribute d.type))]))
|
||||
|
||||
;; TODO: This makes for really bad error messages when an identifier is undefined.
|
||||
(define-syntax (#%app syn)
|
||||
(syntax-case syn ()
|
||||
[(_ e)
|
||||
|
|
|
@ -24,13 +24,12 @@
|
|||
(extend-gamma : (-> Gamma Var stlc-type Gamma)))
|
||||
|
||||
(define (lookup-gamma (g : Gamma) (x : Var))
|
||||
(case* Gamma Type g () (lambda (g : Gamma) (Maybe stlc-type))
|
||||
(match g
|
||||
[emp-gamma (none stlc-type)]
|
||||
[(extend-gamma (g1 : Gamma) (v1 : Var) (t1 : stlc-type))
|
||||
IH: ((ih-g1 : (Maybe stlc-type)))
|
||||
(if (var-equal? v1 x)
|
||||
(some stlc-type t1)
|
||||
ih-g1)]))
|
||||
(recur g1))]))
|
||||
|
||||
(define-relation (has-type Gamma stlc-term stlc-type)
|
||||
#:output-coq "stlc.v"
|
||||
|
|
Loading…
Reference in New Issue
Block a user