summaryrefslogtreecommitdiff
path: root/src/hir/type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hir/type.hpp')
-rw-r--r--src/hir/type.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/hir/type.hpp b/src/hir/type.hpp
new file mode 100644
index 00000000..0b0ff488
--- /dev/null
+++ b/src/hir/type.hpp
@@ -0,0 +1,26 @@
+
+#ifndef _HIR_TYPE_HPP_
+#define _HIR_TYPE_HPP_
+#pragma once
+
+#include <hir/path.hpp>
+
+namespace HIR {
+
+class TypeRef
+{
+ // Options:
+ // - Primitive
+ // - Parameter
+ // - Path
+
+ // - Array
+ // - Tuple
+ // - Borrow
+ // - Pointer
+};
+
+} // namespace HIR
+
+#endif
+