refine and document new scheme grammar forms
svn: r6551 original commit: 39a98d4266aea6f8fec455537c54b09fb1207642
This commit is contained in:
parent
32a99e7b85
commit
e12b4a9088
|
@ -263,7 +263,10 @@
|
||||||
(*defthing 'id 'result (lambda () (list desc ...)))]))
|
(*defthing 'id 'result (lambda () (list desc ...)))]))
|
||||||
(define-syntax schemegrammar
|
(define-syntax schemegrammar
|
||||||
(syntax-rules ()
|
(syntax-rules ()
|
||||||
[(_ id clause ...) (*schemegrammar (scheme id) (schemeblock0 clause) ...)]))
|
[(_ #:literals (lit ...) id clause ...) (*schemegrammar '(lit ...)
|
||||||
|
'(id clause ...)
|
||||||
|
(lambda () (list (scheme id) (schemeblock0 clause) ...)))]
|
||||||
|
[(_ id clause ...) (schemegrammar #:literals () id clause ...)]))
|
||||||
(define-syntax var
|
(define-syntax var
|
||||||
(syntax-rules ()
|
(syntax-rules ()
|
||||||
[(_ id) (*var 'id)]))
|
[(_ id) (*var 'id)]))
|
||||||
|
@ -511,7 +514,7 @@
|
||||||
append
|
append
|
||||||
(map (lambda (sub)
|
(map (lambda (sub)
|
||||||
(list (list (make-flow (list (make-paragraph (list (tt 'nbsp))))))
|
(list (list (make-flow (list (make-paragraph (list (tt 'nbsp))))))
|
||||||
(list (make-flow (list (apply *schemegrammar
|
(list (make-flow (list (apply *schemerawgrammar
|
||||||
(map (lambda (f) (f)) sub)))))))
|
(map (lambda (f) (f)) sub)))))))
|
||||||
sub-procs))))
|
sub-procs))))
|
||||||
(content-thunk)))))
|
(content-thunk)))))
|
||||||
|
@ -540,7 +543,7 @@
|
||||||
(make-paragraph (list (to-element form)))))))))
|
(make-paragraph (list (to-element form)))))))))
|
||||||
(flow-paragraphs (decode-flow (content-thunk)))))))
|
(flow-paragraphs (decode-flow (content-thunk)))))))
|
||||||
|
|
||||||
(define (*schemegrammar nonterm clause1 . clauses)
|
(define (*schemerawgrammar nonterm clause1 . clauses)
|
||||||
(make-table
|
(make-table
|
||||||
'((valignment baseline baseline baseline baseline baseline)
|
'((valignment baseline baseline baseline baseline baseline)
|
||||||
(alignment left left center left left))
|
(alignment left left center left left))
|
||||||
|
@ -560,6 +563,18 @@
|
||||||
(make-flow (list clause))))
|
(make-flow (list clause))))
|
||||||
clauses)))))
|
clauses)))))
|
||||||
|
|
||||||
|
(define (*schemegrammar lits s-expr clauses-thunk)
|
||||||
|
(parameterize ([current-variable-list
|
||||||
|
(let loop ([form s-expr])
|
||||||
|
(cond
|
||||||
|
[(symbol? form) (if (memq form lits)
|
||||||
|
null
|
||||||
|
(list form))]
|
||||||
|
[(pair? form) (append (loop (car form))
|
||||||
|
(loop (cdr form)))]
|
||||||
|
[else null]))])
|
||||||
|
(apply *schemerawgrammar (clauses-thunk))))
|
||||||
|
|
||||||
(define (*var id)
|
(define (*var id)
|
||||||
(to-element (*var-sym id)))
|
(to-element (*var-sym id)))
|
||||||
|
|
||||||
|
|
|
@ -226,6 +226,18 @@ procedure. In this description, a reference to any identifier in
|
||||||
The typesetting of @scheme[(id . datum)] preserves the source
|
The typesetting of @scheme[(id . datum)] preserves the source
|
||||||
layout, like @scheme[schemeblock], and unlike @scheme[defproc].}
|
layout, like @scheme[schemeblock], and unlike @scheme[defproc].}
|
||||||
|
|
||||||
|
@defform[(defform* [(id . datum) ..+] pre-flow ...)]{Like @scheme[defform],
|
||||||
|
but for multiple forms using the same @scheme[id].}
|
||||||
|
|
||||||
|
@defform[(defform/subs (id . datum)
|
||||||
|
([nonterm-id clause-datum ...+] ...)
|
||||||
|
pre-flow ...)]{
|
||||||
|
Like @scheme[defform], but including an auxiliary grammar of
|
||||||
|
non-terminals shown with the @scheme[id] form. Each
|
||||||
|
@scheme[nonterm-id] is specified as being any of the corresponding
|
||||||
|
@scheme[clause-datum]s, where the formatting of each
|
||||||
|
@scheme[clause-datum] is preserved.}
|
||||||
|
|
||||||
@defform[(specform (id . datum) pre-flow ...)]{Like @scheme[defform],
|
@defform[(specform (id . datum) pre-flow ...)]{Like @scheme[defform],
|
||||||
with without registering a definition, and with indenting on the left
|
with without registering a definition, and with indenting on the left
|
||||||
for both the specification and the @scheme[pre-flow]s.}
|
for both the specification and the @scheme[pre-flow]s.}
|
||||||
|
@ -242,22 +254,23 @@ The @scheme[pre-flow]s list is parsed as a flow that documents the
|
||||||
procedure. In this description, a reference to any identifier in
|
procedure. In this description, a reference to any identifier in
|
||||||
@scheme[datum] is typeset as a sub-form non-terminal.}
|
@scheme[datum] is typeset as a sub-form non-terminal.}
|
||||||
|
|
||||||
|
|
||||||
@defform[(defthing id contract-expr-datum pre-flow ...)]{Like
|
@defform[(defthing id contract-expr-datum pre-flow ...)]{Like
|
||||||
@scheme[defproc], but for a non-procedure binding.}
|
@scheme[defproc], but for a non-procedure binding.}
|
||||||
|
|
||||||
@defform[(defstruct struct-name ([field-name contract-expr-datum] ...)
|
@defform/subs[(defstruct struct-name ([field-name contract-expr-datum] ...)
|
||||||
pre-flow ...)]{
|
pre-flow ...)
|
||||||
|
([struct-name id
|
||||||
|
(id super-id)])]{
|
||||||
|
|
||||||
Similar to @scheme[defform], but for a structure definition.
|
Similar to @scheme[defform] or @scheme[defproc], but for a structure
|
||||||
|
definition.}
|
||||||
The @scheme[struct-name] can be either of the following:
|
|
||||||
|
|
||||||
@specsubform[id]{A structure type with no
|
|
||||||
specified supertype.}
|
|
||||||
|
|
||||||
@specsubform[(id super-id)]{A type with indicated supertype.}
|
|
||||||
|
|
||||||
|
@defform/subs[(schemegrammar literals ? id clause-datum ...+)
|
||||||
|
([literals (code:line #:literals (literal-id ...))])]{
|
||||||
|
Creates a table to define the grammar of @scheme[id]. Each identifier mentioned
|
||||||
|
in a @scheme[clause-datum] is typeset as a non-terminal, except for the
|
||||||
|
identifiers listed as @scheme[literal-id]s, which are typeset as with
|
||||||
|
@scheme[scheme].
|
||||||
}
|
}
|
||||||
|
|
||||||
@; ------------------------------------------------------------------------
|
@; ------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue
Block a user