Some pre-expanded macros. Use them when your macro is generating macros.
Go to file
2021-03-04 21:21:41 +00:00
scribblings Changed my name :) 2021-03-04 21:21:41 +00:00
test Wrote a preexpander for a simplified variant of syntax-case. 2016-04-07 18:56:06 +02:00
.gitignore Initial commit 2016-04-07 14:53:24 +02:00
.travis.yml Remove -x option on raco test in .travis.yml, so that all modules are run, including those without a test submodule. 2016-10-11 00:23:39 +02:00
and.rkt Wrote a preexpander for a simplified variant of syntax-case. 2016-04-07 18:56:06 +02:00
info.rkt Changed my name :) 2021-03-04 21:21:41 +00:00
LICENSE.txt Changed my name :) 2021-03-04 21:21:41 +00:00
main.rkt Initial commit 2016-04-07 14:53:24 +02:00
README.md Added non-maintenance badge (as of 2017) 2017-04-19 20:14:43 +02:00
syntax-case.rkt Wrote a preexpander for a simplified variant of syntax-case. 2016-04-07 18:56:06 +02:00

Unmaintained as of 2017,

preexpanded

This project was an attempt at making it possible to write efficient macros which produce code using other macros. The goal was to statically pre-expand parts the generated code within the generator, so that the produced code consists mostly of primitives (let-values, if, …), but can still be specified in a concise way (let, cond, …).

To do this properly, one would need to consider the generated macros as source-to-source functions which can be partially applied.

This attempt however only consisted in hard-coding the expanded form of a few common macros, in a way which could easily and efficiently be injected in the generated code.