change behavior of cdot

This commit is contained in:
Jay McCarthy 2016-08-29 11:11:59 -04:00
parent c9ce1f25e0
commit d6d418d67a
4 changed files with 12 additions and 11 deletions

View File

@ -1,3 +0,0 @@
#lang racket/base
(provide (all-from-out racket/base)
(rename-out [quote #%dot]))

View File

@ -1,5 +0,0 @@
#lang s-exp syntax/module-reader
"lang.rkt"
#:wrapper1 (lambda (thunk)
(parameterize ([read-cdot #true])
(thunk)))

View File

@ -1,2 +0,0 @@
#lang reader "reader.rkt"
x.

View File

@ -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)]