有哪些学习如何实施方案宏的好资源?
我用 JavaScript 编写了一个类似Scheme 的语言编译器/vm。 http://github.com/z5h/zb-lisp
Dybvig 的“三种方案实现”论文(可在我的 github 上找到)对于尾部调用优化、调用/抄送和其他功能的实现非常重要。
我正在考虑添加某种类型的宏支持。并想知道是否有类似的很棒的参考资料来实现宏系统。
谢谢。
I've written a Scheme-ish language compiler/vm in JavaScript. http://github.com/z5h/zb-lisp
Dybvig's "Three Scheme Implementations" paper (available on my github) was hugely important in getting stuff like tail-call-optimization, call/cc and other things working.
I'm thinking about adding some type of macro support. And wondering if there are similarly awesome references for implementing macro systems.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Lisp in Small Pieces 就是你所需要的。
Lisp in Small Pieces is what you need.