Merge commit '47f60d0996' as 'third_party/lisp/quasiquote_2'
This commit is contained in:
commit
ce989529ba
8 changed files with 895 additions and 0 deletions
21
third_party/lisp/quasiquote_2/tests-macro.lisp
vendored
Normal file
21
third_party/lisp/quasiquote_2/tests-macro.lisp
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
(in-package #:quasiquote-2.0-tests)
|
||||
|
||||
(in-suite quasiquote-2.0)
|
||||
|
||||
(enable-quasiquote-2.0)
|
||||
|
||||
(defmacro define-sample-macro (name args &body body)
|
||||
`(defmacro ,name ,args
|
||||
`(sample-thing-to-macroexpand-to
|
||||
,,@body)))
|
||||
|
||||
(define-sample-macro sample-macro-1 (x y)
|
||||
,x ,y)
|
||||
|
||||
(define-sample-macro sample-macro-2 (&body body)
|
||||
,@body)
|
||||
|
||||
(test macro-defined-macroexpansions
|
||||
(is (equal '(sample-thing-to-macroexpand-to a b) (macroexpand-1 '(sample-macro-1 a b))))
|
||||
(is (equal '(sample-thing-to-macroexpand-to a b c) (macroexpand-1 '(sample-macro-2 a b c)))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue