Provide stuff

This commit is contained in:
Georges Dupéron 2017-01-10 23:04:17 +01:00
parent 2fa55c0d3f
commit 3b59681010
3 changed files with 15 additions and 1 deletions

View File

@ -7,6 +7,8 @@
extract-first-comments
extract-comments-after)
(require "typed-syntax.rkt")
(define-type First-Comments
(Rec R (Pairof (U #f (Pairof (Syntaxof 'saved-props+srcloc)
R))

View File

@ -17,6 +17,8 @@
ISyntax-E
(struct-out NonSyntax)
;(struct-out NonSexp) ; already exported in typed-syntax-convert.rkt
NonSyntaxOf
NonSexpOf
any->isyntax
syntax->isyntax
any->isyntax-e)

View File

@ -3,8 +3,18 @@
(provide isexp?
try-any->isexp
any->isexp+non-sexp
CoreSexp)
CoreSexp
ISyntaxOf
ISyntaxOf-E
ISyntax
ISyntax-E
NonSyntaxOf
NonSexpOf
any->isyntax ;; TODO: make wrappers for these, which discard the second value
syntax->isyntax
any->isyntax-e)
(require "typed-syntax-convert.rkt"
"typed-syntax-convert2.rkt"
"typed-syntax-predicate.rkt")