Fixed use of case*, added TODO about things

This commit is contained in:
William J. Bowman 2016-01-18 12:10:13 -05:00
parent 04619e1f0b
commit 2fcba80950
No known key found for this signature in database
GPG Key ID: DDD48D26958F0D1A
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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"