-
Notifications
You must be signed in to change notification settings - Fork 1
/
type-check-Lwhile.rkt
58 lines (50 loc) · 1.9 KB
/
type-check-Lwhile.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#lang racket
(require graph)
(require "multigraph.rkt")
(require "utilities.rkt")
(require "type-check-Lif.rkt")
(require "type-check-Cif.rkt")
(provide type-check-Lwhile type-check-Lwhile-class)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; while, begin, set!
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; type-check-Lwhile
(define type-check-Lwhile-class
(class type-check-Lif-class
(super-new)
(inherit check-type-equal?)
;; lenient type checking for '_
(define/override (type-equal? t1 t2)
(debug 'type-equal? "lenient" t1 t2)
(match* (t1 t2)
[('_ t2) #t]
[(t1 '_) #t]
[(other wise) (equal? t1 t2)]))
(define/override (type-check-exp env)
(lambda (e)
(debug 'type-check-exp "Lwhile" e)
(define recur (type-check-exp env))
(match e
[(SetBang x rhs)
(define-values (rhs^ rhsT) (recur rhs))
(define varT (dict-ref env x))
(check-type-equal? rhsT varT e)
(values (SetBang x rhs^) 'Void)]
[(GetBang x)
(values (GetBang x) (dict-ref env x))]
[(WhileLoop cnd body)
(define-values (cnd^ Tc) (recur cnd))
(check-type-equal? Tc 'Boolean e)
(define-values (body^ Tbody) ((type-check-exp env) body))
(values (WhileLoop cnd^ body^) 'Void)]
[(Begin es body)
(define-values (es^ ts)
(for/lists (l1 l2) ([e es]) (recur e)))
(define-values (body^ Tbody) (recur body))
(values (Begin es^ body^) Tbody)]
[(Void) (values (Void) 'Void)]
[else ((super type-check-exp env) e)])))
))
(define (type-check-Lwhile p)
(send (new type-check-Lwhile-class) type-check-program p))