misc def stuff

This commit is contained in:
Jay McCarthy 2015-11-24 20:15:57 -05:00
parent 8d43fc9770
commit 27f471e04e
2 changed files with 10 additions and 3 deletions

View File

@ -210,7 +210,6 @@
(pattern x:id
#:attr λ-arg (syntax x)
#:attr λ-bind '())
;; xxx write a test for this
(pattern (~and def-lhs:expr (#%brackets dt . _))
#:declare dt (static def-transformer? "def transformer")
#:with x (generate-temporary #'def-lhs)
@ -269,7 +268,6 @@
[(_#%dot body:expr)
(syntax/loc stx
(remix-cut body))]
;; xxx test this
[(_#%dot bodies:expr ...)
(syntax/loc stx
(remix-cut (#%dot bodies ...)))]))])

View File

@ -251,4 +251,13 @@
(def [example^ ee] 1)
(module+ test
{(ee.f 2) 1}
{(ee.g 2) 2})
{(ee.g 2) 2}
;; Notice that cut works with nested dots
{(λ.example2^.h 'ignored) 19})
;; This is especially useful inside of functions
(def (f-using-example [example^ ee])
(ee.f 2))
(module+ test
{(f-using-example 1) 1})