summaryrefslogtreecommitdiff
path: root/ast/README
diff options
context:
space:
mode:
authorYale AI Dept <ai@nebula.cs.yale.edu>1993-07-14 13:08:00 -0500
committerDuncan McGreggor <duncan.mcgreggor@rackspace.com>1993-07-14 13:08:00 -0500
commit4e987026148fe65c323afbc93cd560c07bf06b3f (patch)
tree26ae54177389edcbe453d25a00c38c2774e8b7d4 /ast/README
Import to github.
Diffstat (limited to 'ast/README')
-rw-r--r--ast/README29
1 files changed, 29 insertions, 0 deletions
diff --git a/ast/README b/ast/README
new file mode 100644
index 0000000..ed2497d
--- /dev/null
+++ b/ast/README
@@ -0,0 +1,29 @@
+This directory defines the primary data structures used in the compiler
+using the `define-struct' macro defined in the struct directory.
+
+Structures are divided into the following catagories:
+
+Basic structures: (basic-structs)
+ References to variables, data constructors, classes, type constructors
+ All references contain the name of the object referred to and a
+ field that will receive the actual definition object when scoping
+ has been resolved.
+ Fixity: (l | n | r, Int)
+
+Module structures: (module-structs)
+ The module ast, import & export related ast's, and fixity definition.
+
+Type system structures: (type-structs)
+ The representation of data types and the type related declarations:
+ type, data, class, and instance.
+
+Value declarations: (valdef-structs)
+
+Expressions: (expr-structs)
+
+Definitions: (definition-structs)
+
+Flic structures: (flic-structs)
+
+
+