use pretty-printing in +scopes
This commit is contained in:
parent
bcd232aab9
commit
b96cc269eb
1
info.rkt
1
info.rkt
|
@ -1,6 +1,7 @@
|
||||||
#lang info
|
#lang info
|
||||||
(define collection "debug-scopes")
|
(define collection "debug-scopes")
|
||||||
(define deps '("base"
|
(define deps '("base"
|
||||||
|
"pretty-format"
|
||||||
"rackunit-lib"
|
"rackunit-lib"
|
||||||
"reprovide-lang"))
|
"reprovide-lang"))
|
||||||
(define build-deps '("scribble-lib"
|
(define build-deps '("scribble-lib"
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
racket/struct
|
racket/struct
|
||||||
racket/string
|
racket/string
|
||||||
racket/format
|
racket/format
|
||||||
|
pretty-format
|
||||||
debug-scopes/named-scopes-sli-parameter)
|
debug-scopes/named-scopes-sli-parameter)
|
||||||
|
|
||||||
(provide +scopes print-full-scopes)
|
(provide +scopes print-full-scopes)
|
||||||
|
@ -160,9 +161,9 @@
|
||||||
""))
|
""))
|
||||||
|
|
||||||
(define (+scopes stx)
|
(define (+scopes stx)
|
||||||
(format "~a~a"
|
(pretty-format "~a~a"
|
||||||
(syntax->datum (add-scopes stx))
|
(syntax->datum (add-scopes stx))
|
||||||
(sli/use stx)))
|
(sli/use stx)))
|
||||||
|
|
||||||
#;(define-syntax (foo stx)
|
#;(define-syntax (foo stx)
|
||||||
(displayln (+scopes stx))
|
(displayln (+scopes stx))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user