summaryrefslogtreecommitdiff
path: root/src/hir/type.hpp
blob: 0b0ff48852dc2135fbb6cd569d56aaf07cfdd271 (plain)
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