diff options
author | John Hodge <tpg@mutabah.net> | 2016-03-22 12:55:46 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-03-22 12:55:46 +0800 |
commit | 2db4633001c72f89de5073b26c6b8c3f1a19baa6 (patch) | |
tree | 17b1565166350c6e5f4499385e54c4133e5c355d /src/hir/type.hpp | |
parent | 92c8489a21feac851a3de2b5a8f192c647504904 (diff) | |
download | mrust-2db4633001c72f89de5073b26c6b8c3f1a19baa6.tar.gz |
HIR - Continued planning
Diffstat (limited to 'src/hir/type.hpp')
-rw-r--r-- | src/hir/type.hpp | 26 |
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 + |