From 3b59681010283e43575e61e9840a1c3a5167ca90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Tue, 10 Jan 2017 23:04:17 +0100 Subject: [PATCH] Provide stuff --- comments/syntax-properties-typed.rkt | 2 ++ comments/typed-syntax-convert2.rkt | 2 ++ comments/typed-syntax.rkt | 12 +++++++++++- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/comments/syntax-properties-typed.rkt b/comments/syntax-properties-typed.rkt index f2c76f09..77763e1b 100644 --- a/comments/syntax-properties-typed.rkt +++ b/comments/syntax-properties-typed.rkt @@ -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)) diff --git a/comments/typed-syntax-convert2.rkt b/comments/typed-syntax-convert2.rkt index 46ecfda7..b8d02daa 100644 --- a/comments/typed-syntax-convert2.rkt +++ b/comments/typed-syntax-convert2.rkt @@ -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) diff --git a/comments/typed-syntax.rkt b/comments/typed-syntax.rkt index 651e597f..31fe96ee 100644 --- a/comments/typed-syntax.rkt +++ b/comments/typed-syntax.rkt @@ -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")