Add #:no-read-output and #:no-read-definitions options #10

Open
opened 2016-03-31 12:41:45 +01:00 by SuzanneSoy · 0 comments
SuzanneSoy commented 2016-03-31 12:41:45 +01:00 (Migrated from github.com)

Disable calling read on the output expressions and definitions, which can be useful when the output contain unbalanced parenthesis, or do not otherwise match the language’s syntax, for example:

#lang repltest racket
> (displayln "(unbalanced")
(unbalanced
> (displayln "#invalid (syntax . too . many . dots)")
#invalid (syntax . too . many . dots)

This will also have the side-effect of allowing the prompt to be matched inside s-expressions.

The #:no-read-definitions can be useful if the first prompt could be part of an s-expression, for example using #lang reader "literal.rkt" from the docs:

#lang repltest #:no-read-definitions #:prompt-start-of-line reader "literal.rkt"
This > text > is > in > the > definitions
> 'first-prompt
'first-prompt
> data
"This > text > is > in > the > definitions"
Disable calling read on the output expressions and definitions, which can be useful when the output contain unbalanced parenthesis, or do not otherwise match the language’s syntax, for example: ``` #lang repltest racket > (displayln "(unbalanced") (unbalanced > (displayln "#invalid (syntax . too . many . dots)") #invalid (syntax . too . many . dots) ``` This will also have the side-effect of allowing the prompt to be matched inside s-expressions. The #:no-read-definitions can be useful if the first prompt could be part of an s-expression, for example using `#lang reader "literal.rkt"` from the docs: ``` #lang repltest #:no-read-definitions #:prompt-start-of-line reader "literal.rkt" This > text > is > in > the > definitions > 'first-prompt 'first-prompt > data "This > text > is > in > the > definitions" ```
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: suzanne.soy/repltest#10
No description provided.