add interaction/no-prompt and clarify that interaction-eval

doesn't catch errors

original commit: e5d91baa2c593f88f0510f61a3a0f65fe22ea7db
This commit is contained in:
Robby Findler 2013-03-20 21:31:19 -05:00
parent 04a6e274f9
commit abbbc02016
2 changed files with 18 additions and 1 deletions

View File

@ -12,6 +12,7 @@
(provide interaction
interaction0
interaction/no-prompt
interaction-eval
interaction-eval-show
racketblock+eval (rename-out [racketblock+eval schemeblock+eval])
@ -460,6 +461,12 @@
[(_ #:escape id (eval:alts a b)) (racketinput* #:escape id a)]
[(_ #:escape id e) (racketinput0 #:escape id e)]))
(define-syntax racketblock*
(syntax-rules (eval:alts code:comment)
[(_ #:escape id (code:comment . rest)) (racketblock0 #:escape id (code:comment . rest))]
[(_ #:escape id (eval:alts a b)) (racketblock #:escape id a)]
[(_ #:escape id e) (racketblock0 #:escape id e)]))
(define-code racketblock0+line (to-paragraph/prefix "" "" (list " ")))
(define-syntax (racketdefinput* stx)
@ -506,6 +513,12 @@
(syntax-case stx ()
[(H e ...) (syntax/loc stx (code-inset (-interaction H e ...)))]))
(define-syntax (interaction/no-prompt stx)
(syntax-case stx ()
[(H e ...)
(syntax/loc stx
(code-inset (titled-interaction who #f #f racketblock* e ...)))]))
(define-syntax (interaction0 stx)
(syntax-case stx ()
[(H e ...) (syntax/loc stx (-interaction H e ...))]))

View File

@ -100,10 +100,14 @@ uses an evaluator whose language is @racketmodname[typed/racket/base].}
Like @racket[interaction], but without insetting the code via
@racket[nested].}
@defform[(interaction/no-prompt maybe-eval maybe-escape datum)]{
Like @racket[interaction], but does not render the output with a prompt.
}
@defform[(interaction-eval maybe-eval maybe-escape datum)]{
Like @racket[interaction], evaluates the @racket[quote]d form of
@racket[datum], but returns the empty string.}
@racket[datum], but returns the empty string and does not catch errors.}
@defform[(interaction-eval-show maybe-eval maybe-escape datum)]{