read-inside-syntax -> read-syntax-inside
svn: r8912 original commit: b866eeb5579bba3399931eed36e9ead8771a832d
This commit is contained in:
parent
2777960bf0
commit
91eee31910
|
@ -643,7 +643,7 @@ constructing a reader table based on the current one, and using that
|
||||||
in reading.
|
in reading.
|
||||||
|
|
||||||
> (read-inside [input-port])
|
> (read-inside [input-port])
|
||||||
> (read-inside-syntax [source-name] [input-port])
|
> (read-syntax-inside [source-name] [input-port])
|
||||||
|
|
||||||
These `-inside' variants parse as if starting inside a "@{...}", and
|
These `-inside' variants parse as if starting inside a "@{...}", and
|
||||||
they return a (syntactic) list. Useful for implementing languages
|
they return a (syntactic) list. Useful for implementing languages
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
(wrap inp (scribble:read-inside inp)))
|
(wrap inp (scribble:read-inside inp)))
|
||||||
|
|
||||||
(define (*read-syntax [src #f] [port (current-input-port)])
|
(define (*read-syntax [src #f] [port (current-input-port)])
|
||||||
(wrap port (scribble:read-inside-syntax src port)))
|
(wrap port (scribble:read-syntax-inside src port)))
|
||||||
|
|
||||||
(define (wrap port body)
|
(define (wrap port body)
|
||||||
(let* ([p-name (object-name port)]
|
(let* ([p-name (object-name port)]
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
;; Utilities
|
;; Utilities
|
||||||
|
|
||||||
(require (prefix-in at: "reader.ss"))
|
(require (prefix-in at: "reader.ss"))
|
||||||
(provide at:read-inside at:read-inside-syntax)
|
(provide at:read-inside at:read-syntax-inside)
|
||||||
|
|
||||||
(provide include)
|
(provide include)
|
||||||
(define-syntax (include stx)
|
(define-syntax (include stx)
|
||||||
|
@ -54,7 +54,7 @@
|
||||||
[dir dir])
|
[dir dir])
|
||||||
#'(let ([contents
|
#'(let ([contents
|
||||||
(with-input-from-file (path->complete-path filename dir)
|
(with-input-from-file (path->complete-path filename dir)
|
||||||
at:read-inside-syntax)])
|
at:read-syntax-inside)])
|
||||||
(parameterize ([current-namespace ns])
|
(parameterize ([current-namespace ns])
|
||||||
(for ([expr (syntax->list contents)])
|
(for ([expr (syntax->list contents)])
|
||||||
(show (eval expr)))))))]))
|
(show (eval expr)))))))]))
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
(wrap inp (at:read-inside inp)))
|
(wrap inp (at:read-inside inp)))
|
||||||
|
|
||||||
(define (*read-syntax [src #f] [port (current-input-port)])
|
(define (*read-syntax [src #f] [port (current-input-port)])
|
||||||
(wrap port (at:read-inside-syntax src port)))
|
(wrap port (at:read-syntax-inside src port)))
|
||||||
|
|
||||||
(define (wrap port body)
|
(define (wrap port body)
|
||||||
(define (strip-leading-newlines stxs)
|
(define (strip-leading-newlines stxs)
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
|
|
||||||
@defmodulelang[scribble/doc]{The @schememodname[scribble/doc] language is
|
@defmodulelang[scribble/doc]{The @schememodname[scribble/doc] language is
|
||||||
the same as @schememodname[scribble/doclang], except that
|
the same as @schememodname[scribble/doclang], except that
|
||||||
@scheme[read-inside-syntax] is used to read the body of the module. In
|
@scheme[read-syntax-inside] is used to read the body of the module. In
|
||||||
other words, the module body starts in Scribble ``text'' mode instead
|
other words, the module body starts in Scribble ``text'' mode instead
|
||||||
of S-expression mode.}
|
of S-expression mode.}
|
||||||
|
|
|
@ -11,7 +11,7 @@ changes that make it suitable as a preprocessor language:
|
||||||
|
|
||||||
@itemize{
|
@itemize{
|
||||||
|
|
||||||
@item{It uses @scheme[read-inside-syntax] to read the body of the
|
@item{It uses @scheme[read-syntax-inside] to read the body of the
|
||||||
module, similar to @secref["docreader"].}
|
module, similar to @secref["docreader"].}
|
||||||
|
|
||||||
@item{It has a custom printer (@scheme[current-print]) that displays
|
@item{It has a custom printer (@scheme[current-print]) that displays
|
||||||
|
|
|
@ -756,7 +756,7 @@ in reading.
|
||||||
}
|
}
|
||||||
|
|
||||||
@defproc[(read-inside [in input-port? (current-input-port)]) any]{}
|
@defproc[(read-inside [in input-port? (current-input-port)]) any]{}
|
||||||
@defproc[(read-inside-syntax [source-name any/c (object-name in)]
|
@defproc[(read-syntax-inside [source-name any/c (object-name in)]
|
||||||
[in input-port? (current-input-port)])
|
[in input-port? (current-input-port)])
|
||||||
(or/c syntax? eof-object?)]{
|
(or/c syntax? eof-object?)]{
|
||||||
These @schemeid[-inside] variants parse as if starting inside a
|
These @schemeid[-inside] variants parse as if starting inside a
|
||||||
|
|
Loading…
Reference in New Issue
Block a user