change behavior of cdot
This commit is contained in:
parent
c9ce1f25e0
commit
d6d418d67a
|
@ -1,3 +0,0 @@
|
|||
#lang racket/base
|
||||
(provide (all-from-out racket/base)
|
||||
(rename-out [quote #%dot]))
|
|
@ -1,5 +0,0 @@
|
|||
#lang s-exp syntax/module-reader
|
||||
"lang.rkt"
|
||||
#:wrapper1 (lambda (thunk)
|
||||
(parameterize ([read-cdot #true])
|
||||
(thunk)))
|
|
@ -1,2 +0,0 @@
|
|||
#lang reader "reader.rkt"
|
||||
x.
|
|
@ -31,13 +31,24 @@
|
|||
(check-false (read-square-bracket-with-tag))
|
||||
(check-false (read-curly-brace-with-tag))
|
||||
(check-false (read-cdot))
|
||||
|
||||
(define-syntax-rule (testerrors s ...)
|
||||
(begin
|
||||
(let ([x s])
|
||||
(check-exn exn:fail:read?
|
||||
(λ () (with-input-from-string x remix-read)))
|
||||
(check-exn exn:fail:read?
|
||||
(λ () (with-input-from-string x remix-read-syntax))))
|
||||
...))
|
||||
|
||||
(testerrors
|
||||
"x.")
|
||||
|
||||
(testit*
|
||||
["(1 2 3)" (1 2 3)]
|
||||
["[1 2 3]" (#%brackets 1 2 3)]
|
||||
["{1 2 3}" (#%braces 1 2 3)]
|
||||
["|a.b|" a.b]
|
||||
["x." (#%dot x)]
|
||||
["a.b" (#%dot a b)]
|
||||
["a .b" (#%dot a b)]
|
||||
["a. b" (#%dot a b)]
|
||||
|
|
Loading…
Reference in New Issue
Block a user