File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
typed-racket-lib/typed-racket Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 171
171
[HashTable (-poly (a b) (-HT a b))]
172
172
[Promise (-poly (a) (-Promise a))]
173
173
[Pair (-poly (a b) (-pair a b))]
174
- [Boxof (-poly (a) (make-Box a))]
174
+ [Boxof (-poly (a) (-box a))]
175
175
[Weak-Boxof (-poly (a) (-weak-box a))]
176
176
[Channelof (-poly (a) (make-Channel a))]
177
177
[Async-Channelof (-poly (a) (make-Async-Channel a))]
Original file line number Diff line number Diff line change 54
54
(define -App make-App)
55
55
(define -mpair make-MPair)
56
56
(define (-Param t1 [t2 t1]) (make-Param t1 t2))
57
- (define -box make-Box)
57
+ (define ( -box t) ( make-Box t) )
58
58
(define -channel make-Channel)
59
59
(define -async-channel make-Async-Channel)
60
60
(define -thread-cell make-ThreadCell)
167
167
(-mu e
168
168
(Un -Null -Boolean -Symbol -String -Keyword -Char -Number
169
169
(make-Vector (-Syntax e))
170
- (make-Box (-Syntax e))
170
+ (-box (-Syntax e))
171
171
(make-Listof (-Syntax e))
172
172
(-pair (-Syntax e) (-Syntax e)))))
173
173
(define/decl Any-Syntax (-Syntax In-Syntax))
177
177
-Number -Boolean -Symbol -String -Keyword -Char
178
178
(-pair sexp sexp)
179
179
(make-Vector sexp)
180
- (make-Box sexp)
180
+ (-box sexp)
181
181
t)))
182
182
(define/decl -Flat
183
183
(-mu flat
You can’t perform that action at this time.
0 commit comments