aboutsummaryrefslogtreecommitdiff
path: root/src/interp/types.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/types.boot')
-rw-r--r--src/interp/types.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/types.boot b/src/interp/types.boot
index 0fe9d04d..a9f67800 100644
--- a/src/interp/types.boot
+++ b/src/interp/types.boot
@@ -126,12 +126,12 @@ namespace BOOT
--% Data structures for the compiler
%Constructor <=> %Symbol -- constructor
%Form <=> %Number or %Symbol or %String or cons -- input syntax form
-%Instantiation <=> cons(%Constructor,%Form) -- constructor instance
+%Instantiation <=> [%Constructor,:%Form] -- constructor instance
%Env <=> %List -- compiling env
%Mode <=> %Symbol or %String or %List -- type of forms
%Code <=> %Form -- generated code
%Triple <=> -- form + type + env
- cons(%Code,cons(%Mode,cons(%Env,null)))
+ [%Code,:[%Mode,:[%Env,:null]]]
%Signature -- signature
<=> %Symbol or cons