summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/ast/all.hh
diff options
context:
space:
mode:
Diffstat (limited to 'tiger-compiler/src/ast/all.hh')
-rw-r--r--tiger-compiler/src/ast/all.hh51
1 files changed, 51 insertions, 0 deletions
diff --git a/tiger-compiler/src/ast/all.hh b/tiger-compiler/src/ast/all.hh
new file mode 100644
index 0000000..c55c3eb
--- /dev/null
+++ b/tiger-compiler/src/ast/all.hh
@@ -0,0 +1,51 @@
+/**
+ ** \file ast/all.hh
+ ** \brief Include all the exported headers.
+ */
+
+#pragma once
+
+#include <ast/fwd.hh>
+
+#include <ast/chunk.hh>
+
+#include <ast/array-exp.hh>
+#include <ast/array-ty.hh>
+#include <ast/assert-exp.hh>
+#include <ast/assign-exp.hh>
+#include <ast/ast.hh>
+#include <ast/break-exp.hh>
+#include <ast/call-exp.hh>
+#include <ast/cast-exp.hh>
+#include <ast/chunk-list.hh>
+#include <ast/class-ty.hh>
+#include <ast/dec.hh>
+#include <ast/escapable.hh>
+#include <ast/exp.hh>
+#include <ast/field-init.hh>
+#include <ast/field-var.hh>
+#include <ast/field.hh>
+#include <ast/for-exp.hh>
+#include <ast/function-dec.hh>
+#include <ast/if-exp.hh>
+#include <ast/int-exp.hh>
+#include <ast/let-exp.hh>
+#include <ast/method-call-exp.hh>
+#include <ast/method-dec.hh>
+#include <ast/name-ty.hh>
+#include <ast/nil-exp.hh>
+#include <ast/object-exp.hh>
+#include <ast/op-exp.hh>
+#include <ast/record-exp.hh>
+#include <ast/record-ty.hh>
+#include <ast/seq-exp.hh>
+#include <ast/simple-var.hh>
+#include <ast/string-exp.hh>
+#include <ast/subscript-var.hh>
+#include <ast/ty.hh>
+#include <ast/typable.hh>
+#include <ast/type-constructor.hh>
+#include <ast/type-dec.hh>
+#include <ast/var-dec.hh>
+#include <ast/var.hh>
+#include <ast/while-exp.hh>