Reprovide stxparse-info/parse and stxparse-info/case in subtemplate/override.

This commit is contained in:
Georges Dupéron 2017-01-26 17:16:57 +01:00
parent 961d507fa9
commit 7a4e03feb3
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,9 @@
#lang racket
(require (rename-in subtemplate
[subtemplate syntax]
[quasisubtemplate quasisyntax]))
(provide (all-from-out subtemplate))
[quasisubtemplate quasisyntax])
stxparse-info/parse
stxparse-info/case)
(provide (all-from-out subtemplate
stxparse-info/parse
stxparse-info/case))

View File

@ -44,3 +44,6 @@ The @racketmodname[subtemplate/override] module re-provides
@racket[subtemplate] as @racket[syntax], and @racket[quasisubtemplate] as
@racket[quasisyntax]. This allows @racketmodname[subtemplate] to be used via
the reader shorthands @racket[#'…] and @racket[#`…].
The @racketmodname[subtemplate/override] module also re-provides
@racketmodname[stxparse-info/parse] and @racketmodname[stxparse-info/case].