use pretty-printing in +scopes

This commit is contained in:
AlexKnauth 2018-05-24 17:08:28 -04:00
parent bcd232aab9
commit b96cc269eb
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,7 @@
#lang info
(define collection "debug-scopes")
(define deps '("base"
"pretty-format"
"rackunit-lib"
"reprovide-lang"))
(define build-deps '("scribble-lib"

View File

@ -4,6 +4,7 @@
racket/struct
racket/string
racket/format
pretty-format
debug-scopes/named-scopes-sli-parameter)
(provide +scopes print-full-scopes)
@ -160,9 +161,9 @@
""))
(define (+scopes stx)
(format "~a~a"
(syntax->datum (add-scopes stx))
(sli/use stx)))
(pretty-format "~a~a"
(syntax->datum (add-scopes stx))
(sli/use stx)))
#;(define-syntax (foo stx)
(displayln (+scopes stx))