The Lambda Lab
/
projects
/
scheme.forth.jl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a04a15
)
Added stubs for macro expansion words.
author
Tim Vaughan
<tgvaughan@gmail.com>
Mon, 12 Jun 2017 07:25:20 +0000
(19:25 +1200)
committer
Tim Vaughan
<tgvaughan@gmail.com>
Mon, 12 Jun 2017 07:25:20 +0000
(19:25 +1200)
src/scheme.4th
patch
|
blob
|
history
diff --git
a/src/scheme.4th
b/src/scheme.4th
index
1068229
..
3931dad
100644
(file)
--- a/
src/scheme.4th
+++ b/
src/scheme.4th
@@
-1766,6
+1766,15
@@
hide env
extend-env eval-sequence eval
;
+: expand-quasiquote ;
+: expand-definition ;
+: expand-assignment ;
+: expand-define-macro ;
+: expand-if ;
+: expand-lambda ;
+: expand-begin ;
+: expand-application ;
+
:noname ( exp -- result )
quasiquote? if expand-quasiquote exit then