1 | // |
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo |
---|
3 | // |
---|
4 | // The contents of this file are covered under the licence agreement in the |
---|
5 | // file "LICENCE" distributed with Cforall. |
---|
6 | // |
---|
7 | // Type.hpp -- |
---|
8 | // |
---|
9 | // Author : Aaron B. Moss |
---|
10 | // Created On : Thu May 9 10:00:00 2019 |
---|
11 | // Last Modified By : Aaron B. Moss |
---|
12 | // Last Modified On : Thu May 9 10:00:00 2019 |
---|
13 | // Update Count : 1 |
---|
14 | // |
---|
15 | |
---|
16 | #pragma once |
---|
17 | |
---|
18 | #include "Node.hpp" |
---|
19 | |
---|
20 | namespace ast { |
---|
21 | |
---|
22 | class Type : public Node { |
---|
23 | |
---|
24 | }; |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | //================================================================================================= |
---|
29 | /// This disgusting and giant piece of boiler-plate is here to solve a cyclic dependency |
---|
30 | /// remove only if there is a better solution |
---|
31 | /// The problem is that ast::ptr< ... > uses increment/decrement which won't work well with |
---|
32 | /// forward declarations |
---|
33 | inline void increment( const class Type * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
34 | inline void decrement( const class Type * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
35 | inline void increment( const class VoidType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
36 | inline void decrement( const class VoidType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
37 | inline void increment( const class BasicType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
38 | inline void decrement( const class BasicType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
39 | inline void increment( const class PointerType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
40 | inline void decrement( const class PointerType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
41 | inline void increment( const class ArrayType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
42 | inline void decrement( const class ArrayType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
43 | inline void increment( const class ReferenceType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
44 | inline void decrement( const class ReferenceType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
45 | inline void increment( const class QualifiedType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
46 | inline void decrement( const class QualifiedType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
47 | inline void increment( const class FunctionType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
48 | inline void decrement( const class FunctionType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
49 | inline void increment( const class ReferenceToType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
50 | inline void decrement( const class ReferenceToType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
51 | inline void increment( const class StructInstType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
52 | inline void decrement( const class StructInstType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
53 | inline void increment( const class UnionInstType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
54 | inline void decrement( const class UnionInstType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
55 | inline void increment( const class EnumInstType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
56 | inline void decrement( const class EnumInstType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
57 | inline void increment( const class TraitInstType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
58 | inline void decrement( const class TraitInstType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
59 | inline void increment( const class TypeInstType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
60 | inline void decrement( const class TypeInstType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
61 | inline void increment( const class TupleType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
62 | inline void decrement( const class TupleType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
63 | inline void increment( const class TypeofType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
64 | inline void decrement( const class TypeofType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
65 | inline void increment( const class AttrType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
66 | inline void decrement( const class AttrType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
67 | inline void increment( const class VarArgsType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
68 | inline void decrement( const class VarArgsType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
69 | inline void increment( const class ZeroType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
70 | inline void decrement( const class ZeroType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
71 | inline void increment( const class OneType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
72 | inline void decrement( const class OneType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
73 | inline void increment( const class GlobalScopeType * node, Node::ref_type ref ) { node->increment( ref ); } |
---|
74 | inline void decrement( const class GlobalScopeType * node, Node::ref_type ref ) { node->decrement( ref ); } |
---|
75 | |
---|
76 | } |
---|
77 | |
---|
78 | // Local Variables: // |
---|
79 | // tab-width: 4 // |
---|
80 | // mode: c++ // |
---|
81 | // compile-command: "make install" // |
---|
82 | // End: // |
---|