aboutsummaryrefslogtreecommitdiff
path: root/stlc-fix.rkt
diff options
context:
space:
mode:
authorJJ2024-06-21 01:00:50 +0000
committerJJ2024-06-21 01:00:50 +0000
commit043ac7bd62b5f6114374a33c4bff17c6fb59837b (patch)
tree2dbad1c9644058251c4bdab791ff82f31505b3ec /stlc-fix.rkt
parenta1394d8f65d4866d21769905e4ed2666f33897ea (diff)
broadly switch to infix operators
Diffstat (limited to 'stlc-fix.rkt')
-rw-r--r--stlc-fix.rkt14
1 files changed, 7 insertions, 7 deletions
diff --git a/stlc-fix.rkt b/stlc-fix.rkt
index bcb28cb..cb6a592 100644
--- a/stlc-fix.rkt
+++ b/stlc-fix.rkt
@@ -41,13 +41,13 @@
(equal? (dict-ref Γ x) with)]
[(`(fix ,e) with)
- (check- (infer- e) `(→ ,with ,with) Γ)]
+ (check- (infer- e) `(,with → ,with) Γ)]
- [(`(λ ,x (: ,t) ,e) `(→ ,t1 ,t2))
+ [(`(λ (,x : ,t) ,e) `(,t1 → ,t2))
(and (equal? t t1) (check- e t2 (dict-set Γ x t1)))]
[(`(,e1 ,e2) t)
(match (infer- e1 Γ)
- [`(→ ,t1 ,t2)
+ [`(,t1 → ,t2)
(and (equal? t2 t) (equal? t1 (infer- e2 Γ)))]
[t #f])]
@@ -65,14 +65,14 @@
[`(fix ,e)
(match (infer- e Γ)
- [`(→ ,t ,t) t]
+ [`(,t → ,t) t]
[t (err (format "fix expects a term of type t → t, got ~a" t))])]
- [`(λ ,x (: ,t) ,e)
- `(→ ,t ,(infer- e (dict-set Γ x t)))]
+ [`(λ (,x : ,t) ,e)
+ `(,t → ,(infer- e (dict-set Γ x t)))]
[`(,e1 ,e2)
(match (infer- e1 Γ)
- [`(→ ,t1 ,t2)
+ [`(,t1 → ,t2)
(if (check- e2 t1 Γ) t2
(err (format "inferred argument type ~a does not match arg ~a" t1 e2)))]
[t (err (format "expected → type on application body, got ~a" t))])]