Adding tests from Alex

This commit is contained in:
Jay McCarthy 2016-08-29 08:09:50 -04:00
parent c6b4c8bdc5
commit c9ce1f25e0
4 changed files with 11 additions and 0 deletions

View File

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

View File

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

View File

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

View File

@ -37,6 +37,7 @@
["[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)]