Removed compile-time debugging display, transformed it into a test.

This commit is contained in:
Georges Dupéron 2017-05-05 22:00:30 +02:00
parent 30bf1aaa2d
commit 6e9b920477

View File

@ -11,6 +11,8 @@
(require stxparse-info/current-pvars
(for-syntax racket/list))
(define result #f)
(define-syntax (continue stx)
(syntax-case stx ()
[(_ old-pvars-stx)
@ -26,13 +28,11 @@
" Before: ~a\n"
" After: ~a\n"
" New items: ~a"
old-pvars
rest-pvars
new-pvars)))
(displayln old-pvars)
(displayln new-pvars)
#'(begin))]))
old-pvars
rest-pvars
new-pvars)))
;; Return the result for tests:
#`(set! result '#,new-pvars))]))
(define-syntax (find-defined-pvars stx)
(syntax-case stx ()
@ -43,4 +43,8 @@
(define/with-syntax (a . b) #'(1 2))
(find-defined-pvars (x . y) #'(3 4))
(define/with-syntax (c . d) #'(5 6))
(define/with-syntax (c . d) #'(5 6))
(module+ test
(require rackunit)
(check-equal? result '(y x)))