1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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