Adding tests from Alex
This commit is contained in:
parent
c6b4c8bdc5
commit
c9ce1f25e0
3
remix/tests/pr/pr1439/lang.rkt
Normal file
3
remix/tests/pr/pr1439/lang.rkt
Normal file
|
@ -0,0 +1,3 @@
|
|||
#lang racket/base
|
||||
(provide (all-from-out racket/base)
|
||||
(rename-out [quote #%dot]))
|
5
remix/tests/pr/pr1439/reader.rkt
Normal file
5
remix/tests/pr/pr1439/reader.rkt
Normal file
|
@ -0,0 +1,5 @@
|
|||
#lang s-exp syntax/module-reader
|
||||
"lang.rkt"
|
||||
#:wrapper1 (lambda (thunk)
|
||||
(parameterize ([read-cdot #true])
|
||||
(thunk)))
|
2
remix/tests/pr/pr1439/use.rkt
Normal file
2
remix/tests/pr/pr1439/use.rkt
Normal file
|
@ -0,0 +1,2 @@
|
|||
#lang reader "reader.rkt"
|
||||
x.
|
|
@ -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)]
|
||||
|
|
Loading…
Reference in New Issue
Block a user