add scopes within boxes, vectors, hashes, and prefab structs #2
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "hash"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This adds the superscript scope markers within other containers which might be found inside syntax objects.
This changes an output like this:
Into an output like this:
Codecov Report
15.23% <9.09%> (-0.49%)
Continue to review full report at Codecov.
Thanks a lot!
This package is released in the public domain (currently using the CC0, but I could change that in the future if there appears to be a better way to deal with the legal technicalities). Is that okay for this contribution?
Yes.
@ -117,3 +127,4 @@
(apply make-prefab-struct key (map add-scopes (struct->list e)))]
[else e]))
(define (sli/use whole-stx)
Out of curiosity, why use
for/fold
instead ofhash-map
? Does this have something to do with the identity of the (possibly mutable) hash object?@ -117,3 +127,4 @@
(apply make-prefab-struct key (map add-scopes (struct->list e)))]
[else e]))
(define (sli/use whole-stx)
Because
hash-map
returns a list, not a hash.@ -117,3 +127,4 @@
(apply make-prefab-struct key (map add-scopes (struct->list e)))]
[else e]))
(define (sli/use whole-stx)
Oh yeah, of course. I'm always surprised when I realise that :) .
@ -117,3 +127,4 @@
(apply make-prefab-struct key (map add-scopes (struct->list e)))]
[else e]))
(define (sli/use whole-stx)
We also considered
for/hash
, but then realized it doesn't preserve the "equal" operation as in whether it's aneq?
,eqv?
, orequal?
based hash, whilehash-update
does preserve that.pkgs.racket-lang.org updated for this PR.
Thank you.