add add-make-prefix-to-constructor tests

original commit: c87cd47c64e443f11155d9dd78bf33c9281de11a
This commit is contained in:
Robby Findler 2011-11-24 09:42:55 -06:00
parent d2604d85bb
commit 4c1e4fd288

View File

@ -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)