add add-make-prefix-to-constructor tests
original commit: c87cd47c64e443f11155d9dd78bf33c9281de11a
This commit is contained in:
parent
d2604d85bb
commit
4c1e4fd288
|
@ -390,6 +390,15 @@
|
|||
(test #f (pc #f) #f)
|
||||
(test #t (pc #f) #t))
|
||||
|
||||
(let ([pc
|
||||
(λ (prefix?)
|
||||
(λ (x)
|
||||
(parameterize ([add-make-prefix-to-constructor prefix?])
|
||||
(print-convert x))))])
|
||||
(struct s (x) #:transparent)
|
||||
(test '(s 1) (pc #f) (s 1))
|
||||
(test '(make-s 1) (pc #t) (s 1)))
|
||||
|
||||
(let ([pc
|
||||
(lambda (pv)
|
||||
(lambda (x)
|
||||
|
|
Loading…
Reference in New Issue
Block a user