Remove unnecessary printing parameter in TR
Pretty printing makes this unnecessary original commit: 872dbd6160c568f44a80f154f838b2c4a4c8f938
This commit is contained in:
parent
b68b5bdd17
commit
2d99b93e3f
|
@ -80,12 +80,11 @@
|
|||
(tc-toplevel/full stx #'e
|
||||
(λ (expanded type)
|
||||
#`(display
|
||||
#,(parameterize ([print-multi-line-case-> #t])
|
||||
(pretty-format-type
|
||||
(match type
|
||||
[(tc-result1: t f o) t]
|
||||
[(tc-results: t) (-values t)]
|
||||
[(tc-any-results:) ManyUniv]))))))]
|
||||
#,(pretty-format-type
|
||||
(match type
|
||||
[(tc-result1: t f o) t]
|
||||
[(tc-results: t) (-values t)]
|
||||
[(tc-any-results:) ManyUniv])))))]
|
||||
[form
|
||||
(raise-syntax-error #f "must be applied to exactly one argument" #'form)]))
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#'(provide print-type print-filter print-object print-pathelem)))
|
||||
(provide-printer)
|
||||
|
||||
(provide print-multi-line-case-> special-dots-printing? print-complex-filters?
|
||||
(provide special-dots-printing? print-complex-filters?
|
||||
current-print-type-fuel current-print-unexpanded
|
||||
pretty-format-type)
|
||||
|
||||
|
@ -36,7 +36,6 @@
|
|||
;; do we use simple type aliases in printing
|
||||
(define print-aliases #t)
|
||||
|
||||
(define print-multi-line-case-> (make-parameter #f))
|
||||
(define special-dots-printing? (make-parameter #f))
|
||||
(define print-complex-filters? (make-parameter #f))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user