-
-
Save wilbowma/f54ed4ffadd200d4fd48 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#lang racket | |
(module ... | |
(define-syntax (trace syn) | |
....) | |
(define-syntax (trace-define-syntax syn) | |
(syntax-case syn () | |
[(_ e ...) | |
.... | |
(syntax-local-lift-require | |
'(for-syntax (only racket/trace trace)) | |
#`(define-syntax #,name | |
(let ([#,name #,def]) (trace #,name) #,name))))])) | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment