We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e14c08 commit b3ed43eCopy full SHA for b3ed43e
private/syntax-property-bundle.rkt
@@ -257,8 +257,9 @@
257
(define (syntax-all-properties stx)
258
(sequence->syntax-property-bundle
259
(for*/list ([path (in-syntax-paths stx)]
260
- [key (in-list (syntax-property-symbol-keys (syntax-ref stx path)))])
261
- (define value (syntax-property (syntax-ref stx path) key))
+ #:do [(define subform (syntax-ref stx path))]
+ [key (in-list (syntax-property-symbol-keys subform))])
262
+ (define value (syntax-property subform key))
263
(syntax-property-entry path key value))))
264
265
0 commit comments