Removed compile-time debugging display, transformed it into a test.
This commit is contained in:
parent
30bf1aaa2d
commit
6e9b920477
|
@ -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)))
|
Loading…
Reference in New Issue
Block a user