 | Apply for macros: a follow-up |
| 1 point by akkartik 4790 days ago | 51 comments |
|
| http://arclanguage.org/item?id=15659 I've been chatting with Pauan offline (thanks Pauan!) and wanted to highlight something that may not have been obvious in the original thread (Especially http://arclanguage.org/item?id=15771). At least it wasn't obvious to me ^_^. Even implementing apply as: (eval (cons (unwrap combiner) args))
doesn't always work with macros like it does for functions. For example, consider this function: (def foo(a b) (cons a b))
You might use it like this: (foo 1 '(2 3)) ; => (1 2 3)
The equivalent call using apply is: (apply foo '(1 (2 3))) ; => (1 2 3)
If you turn foo into a macro, this equivalence won't work. (mac foo(a b) `(cons ,a ,b))
(foo 1 '(2 3)) ; => (1 2 3)
(apply foo '(1 (2 3))) ; => runs afoul of the implicit eval in foo
This apply works for some macros (like Pauan's def example), just not all of them. I think apply would have to be really sophisticated to work all the time. For now I've setup wart to just throw a warning in such situations.--- In other news, eval in wart now takes an environment in the usual manner. I've also setup a read-only variable called caller-scope. Here's how I define anonymous macros now: = m (fn '(a b) (eval `(cons ,a ,b) caller-scope))
(m 1 '(2 3))
The combination of quoted parameters and caller-scope seems to do everything vau does, as far as I can see. I'd love comments on this way of decomposing things. It seems all its drawbacks wrt vau involve hygiene, which I want to explore ignoring.--- Phew, that was a two-week-long tangent that involved me ripping wart down to its foundations before building it up again, and revisiting all my assumptions about how things work. http://github.com/akkartik/wart/compare/5d227d659c...2ce78d2074 Now I'm going to work on my inliner again, to regain some of wart's squandered performance. |