Merge pull request #1 from AlexKnauth/cdot-left-assoc

use left-grouping behavior of read-cdot
This commit is contained in:
Jay McCarthy 2016-09-01 20:41:01 -04:00 committed by GitHub
commit 0b3ea06bf7
3 changed files with 15 additions and 11 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
compiled/
doc/
*~

View File

@ -203,13 +203,12 @@
(define-syntax (#%dot stx)
(syntax-parse stx
#:literals (#%dot)
[(_ dt . (~and x+y (x ... (#%dot . y))))
#:declare dt (static dot-transformer? "dot transformer")
[(_ (#%dot dt x) . y)
;; flatten it so that the dot transformer within dt sees both x and y
(quasisyntax/loc stx
(#%dot dt
#,@(syntax/loc #'x+y
(x ... . y))))]
[(_ dt . (~not (x ... (#%dot . _) . _)))
(#%dot dt x . y))]
[(_ dt . _)
;; dt is an identifier with a syntax binding to a dot transformer
#:declare dt (static dot-transformer? "dot transformer")
(dot-transform (attribute dt.value) stx)]))
@ -222,10 +221,12 @@
(define-syntax (remix-#%app stx)
(syntax-parse stx
#:literals (#%dot)
[(_ (#%dot x ... (#%dot . y)) . body)
[(_ (#%dot (#%dot dt x) . y) . body)
;; flatten it so that the dot or app-dot transformer within dt sees both x and y
(syntax/loc stx
(remix-#%app (#%dot x ... . y) . body))]
[(_ (#%dot adt . (~not (x ... (#%dot . _) . _))) . body)
(remix-#%app (#%dot dt x . y) . body))]
[(_ (#%dot adt . _) . body)
;; adt is an identifier with a syntax binding to an app-dot transformer
#:declare adt (static app-dot-transformer? "app-dot transformer")
(app-dot-transform (attribute adt.value) stx)]
[(_ . body)

View File

@ -55,10 +55,10 @@
["a . b" (#%dot a b)]
["1.a" (#%dot 1 a)]
["#i1.2 .a" (#%dot 1.2 a)]
["1 .2.a" (#%dot 1 (#%dot 2 a))]
["1 .2.a" (#%dot (#%dot 1 2) a)]
["a.#i1.2" (#%dot a 1.2)]
;; ((sprite.bbox).ul).x
["a.b.c" (#%dot a (#%dot b c))]
["a.b.c" (#%dot (#%dot a b) c)]
["a.(b c)" (#%dot a (b c))]
["(a b).c" (#%dot (a b) c)]
["(a b).(c d)" (#%dot (a b) (c d))]