[87701b6] | 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 | // Node.hpp -- |
---|
| 8 | // |
---|
| 9 | // Author : Thierry Delisle |
---|
| 10 | // Created On : Thu May 16 14:16:00 2019 |
---|
| 11 | // Last Modified By : |
---|
| 12 | // Last Modified On : |
---|
| 13 | // Update Count : |
---|
| 14 | // |
---|
| 15 | |
---|
| 16 | #include "Node.hpp" |
---|
| 17 | #include "Fwd.hpp" |
---|
[10a1225] | 18 | |
---|
[733074e] | 19 | #include <iostream> |
---|
| 20 | |
---|
[10a1225] | 21 | #include "Attribute.hpp" |
---|
[87701b6] | 22 | #include "Decl.hpp" |
---|
| 23 | #include "Expr.hpp" |
---|
[10a1225] | 24 | #include "Init.hpp" |
---|
[87701b6] | 25 | #include "Stmt.hpp" |
---|
| 26 | #include "Type.hpp" |
---|
[10a1225] | 27 | #include "TypeSubstitution.hpp" |
---|
[87701b6] | 28 | |
---|
[461046f] | 29 | #include "Print.hpp" |
---|
| 30 | |
---|
[87701b6] | 31 | template< typename node_t, enum ast::Node::ref_type ref_t > |
---|
| 32 | void ast::ptr_base<node_t, ref_t>::_inc( const node_t * node ) { node->increment(ref_t); } |
---|
| 33 | |
---|
| 34 | template< typename node_t, enum ast::Node::ref_type ref_t > |
---|
| 35 | void ast::ptr_base<node_t, ref_t>::_dec( const node_t * node ) { node->decrement(ref_t); } |
---|
| 36 | |
---|
[4864a73] | 37 | template< typename node_t, enum ast::Node::ref_type ref_t > |
---|
| 38 | void ast::ptr_base<node_t, ref_t>::_check() const { if(node) assert(node->was_ever_strong == false || node->strong_count > 0); } |
---|
| 39 | |
---|
[10a1225] | 40 | template< typename node_t, enum ast::Node::ref_type ref_t > |
---|
[76ed81f] | 41 | node_t * ast::ptr_base<node_t, ref_t>::get_and_mutate() { |
---|
[10a1225] | 42 | // get mutable version of `n` |
---|
| 43 | auto r = mutate( node ); |
---|
| 44 | // re-assign mutable version in case `mutate()` produced a new pointer |
---|
| 45 | assign( r ); |
---|
| 46 | return r; |
---|
| 47 | } |
---|
| 48 | |
---|
[76ed81f] | 49 | template< typename node_t, enum ast::Node::ref_type ref_t > |
---|
| 50 | node_t * ast::ptr_base<node_t, ref_t>::set_and_mutate( const node_t * n ) { |
---|
| 51 | // ensure ownership of `n` by this node to avoid spurious single-owner mutates |
---|
| 52 | assign( n ); |
---|
| 53 | // return mutable version |
---|
| 54 | return get_and_mutate(); |
---|
| 55 | } |
---|
| 56 | |
---|
[733074e] | 57 | std::ostream & ast::operator<< ( std::ostream & out, const ast::Node * node ) { |
---|
[461046f] | 58 | print(out, node); |
---|
[733074e] | 59 | return out; |
---|
| 60 | } |
---|
| 61 | |
---|
[87701b6] | 62 | template class ast::ptr_base< ast::Node, ast::Node::ref_type::weak >; |
---|
| 63 | template class ast::ptr_base< ast::Node, ast::Node::ref_type::strong >; |
---|
| 64 | template class ast::ptr_base< ast::ParseNode, ast::Node::ref_type::weak >; |
---|
| 65 | template class ast::ptr_base< ast::ParseNode, ast::Node::ref_type::strong >; |
---|
| 66 | template class ast::ptr_base< ast::Decl, ast::Node::ref_type::weak >; |
---|
| 67 | template class ast::ptr_base< ast::Decl, ast::Node::ref_type::strong >; |
---|
| 68 | template class ast::ptr_base< ast::DeclWithType, ast::Node::ref_type::weak >; |
---|
| 69 | template class ast::ptr_base< ast::DeclWithType, ast::Node::ref_type::strong >; |
---|
| 70 | template class ast::ptr_base< ast::ObjectDecl, ast::Node::ref_type::weak >; |
---|
| 71 | template class ast::ptr_base< ast::ObjectDecl, ast::Node::ref_type::strong >; |
---|
| 72 | template class ast::ptr_base< ast::FunctionDecl, ast::Node::ref_type::weak >; |
---|
| 73 | template class ast::ptr_base< ast::FunctionDecl, ast::Node::ref_type::strong >; |
---|
| 74 | template class ast::ptr_base< ast::AggregateDecl, ast::Node::ref_type::weak >; |
---|
| 75 | template class ast::ptr_base< ast::AggregateDecl, ast::Node::ref_type::strong >; |
---|
| 76 | template class ast::ptr_base< ast::StructDecl, ast::Node::ref_type::weak >; |
---|
| 77 | template class ast::ptr_base< ast::StructDecl, ast::Node::ref_type::strong >; |
---|
| 78 | template class ast::ptr_base< ast::UnionDecl, ast::Node::ref_type::weak >; |
---|
| 79 | template class ast::ptr_base< ast::UnionDecl, ast::Node::ref_type::strong >; |
---|
| 80 | template class ast::ptr_base< ast::EnumDecl, ast::Node::ref_type::weak >; |
---|
| 81 | template class ast::ptr_base< ast::EnumDecl, ast::Node::ref_type::strong >; |
---|
| 82 | template class ast::ptr_base< ast::TraitDecl, ast::Node::ref_type::weak >; |
---|
| 83 | template class ast::ptr_base< ast::TraitDecl, ast::Node::ref_type::strong >; |
---|
| 84 | template class ast::ptr_base< ast::NamedTypeDecl, ast::Node::ref_type::weak >; |
---|
| 85 | template class ast::ptr_base< ast::NamedTypeDecl, ast::Node::ref_type::strong >; |
---|
| 86 | template class ast::ptr_base< ast::TypeDecl, ast::Node::ref_type::weak >; |
---|
| 87 | template class ast::ptr_base< ast::TypeDecl, ast::Node::ref_type::strong >; |
---|
| 88 | template class ast::ptr_base< ast::TypedefDecl, ast::Node::ref_type::weak >; |
---|
| 89 | template class ast::ptr_base< ast::TypedefDecl, ast::Node::ref_type::strong >; |
---|
| 90 | template class ast::ptr_base< ast::AsmDecl, ast::Node::ref_type::weak >; |
---|
| 91 | template class ast::ptr_base< ast::AsmDecl, ast::Node::ref_type::strong >; |
---|
| 92 | template class ast::ptr_base< ast::StaticAssertDecl, ast::Node::ref_type::weak >; |
---|
| 93 | template class ast::ptr_base< ast::StaticAssertDecl, ast::Node::ref_type::strong >; |
---|
| 94 | template class ast::ptr_base< ast::Stmt, ast::Node::ref_type::weak >; |
---|
| 95 | template class ast::ptr_base< ast::Stmt, ast::Node::ref_type::strong >; |
---|
| 96 | template class ast::ptr_base< ast::CompoundStmt, ast::Node::ref_type::weak >; |
---|
| 97 | template class ast::ptr_base< ast::CompoundStmt, ast::Node::ref_type::strong >; |
---|
| 98 | template class ast::ptr_base< ast::ExprStmt, ast::Node::ref_type::weak >; |
---|
| 99 | template class ast::ptr_base< ast::ExprStmt, ast::Node::ref_type::strong >; |
---|
| 100 | template class ast::ptr_base< ast::AsmStmt, ast::Node::ref_type::weak >; |
---|
| 101 | template class ast::ptr_base< ast::AsmStmt, ast::Node::ref_type::strong >; |
---|
| 102 | template class ast::ptr_base< ast::DirectiveStmt, ast::Node::ref_type::weak >; |
---|
| 103 | template class ast::ptr_base< ast::DirectiveStmt, ast::Node::ref_type::strong >; |
---|
| 104 | template class ast::ptr_base< ast::IfStmt, ast::Node::ref_type::weak >; |
---|
| 105 | template class ast::ptr_base< ast::IfStmt, ast::Node::ref_type::strong >; |
---|
| 106 | template class ast::ptr_base< ast::WhileStmt, ast::Node::ref_type::weak >; |
---|
| 107 | template class ast::ptr_base< ast::WhileStmt, ast::Node::ref_type::strong >; |
---|
| 108 | template class ast::ptr_base< ast::ForStmt, ast::Node::ref_type::weak >; |
---|
| 109 | template class ast::ptr_base< ast::ForStmt, ast::Node::ref_type::strong >; |
---|
| 110 | template class ast::ptr_base< ast::SwitchStmt, ast::Node::ref_type::weak >; |
---|
| 111 | template class ast::ptr_base< ast::SwitchStmt, ast::Node::ref_type::strong >; |
---|
| 112 | template class ast::ptr_base< ast::CaseStmt, ast::Node::ref_type::weak >; |
---|
| 113 | template class ast::ptr_base< ast::CaseStmt, ast::Node::ref_type::strong >; |
---|
| 114 | template class ast::ptr_base< ast::BranchStmt, ast::Node::ref_type::weak >; |
---|
| 115 | template class ast::ptr_base< ast::BranchStmt, ast::Node::ref_type::strong >; |
---|
| 116 | template class ast::ptr_base< ast::ReturnStmt, ast::Node::ref_type::weak >; |
---|
| 117 | template class ast::ptr_base< ast::ReturnStmt, ast::Node::ref_type::strong >; |
---|
| 118 | template class ast::ptr_base< ast::ThrowStmt, ast::Node::ref_type::weak >; |
---|
| 119 | template class ast::ptr_base< ast::ThrowStmt, ast::Node::ref_type::strong >; |
---|
| 120 | template class ast::ptr_base< ast::TryStmt, ast::Node::ref_type::weak >; |
---|
| 121 | template class ast::ptr_base< ast::TryStmt, ast::Node::ref_type::strong >; |
---|
| 122 | template class ast::ptr_base< ast::CatchStmt, ast::Node::ref_type::weak >; |
---|
| 123 | template class ast::ptr_base< ast::CatchStmt, ast::Node::ref_type::strong >; |
---|
| 124 | template class ast::ptr_base< ast::FinallyStmt, ast::Node::ref_type::weak >; |
---|
| 125 | template class ast::ptr_base< ast::FinallyStmt, ast::Node::ref_type::strong >; |
---|
| 126 | template class ast::ptr_base< ast::WaitForStmt, ast::Node::ref_type::weak >; |
---|
| 127 | template class ast::ptr_base< ast::WaitForStmt, ast::Node::ref_type::strong >; |
---|
| 128 | template class ast::ptr_base< ast::WithStmt, ast::Node::ref_type::weak >; |
---|
| 129 | template class ast::ptr_base< ast::WithStmt, ast::Node::ref_type::strong >; |
---|
| 130 | template class ast::ptr_base< ast::DeclStmt, ast::Node::ref_type::weak >; |
---|
| 131 | template class ast::ptr_base< ast::DeclStmt, ast::Node::ref_type::strong >; |
---|
| 132 | template class ast::ptr_base< ast::NullStmt, ast::Node::ref_type::weak >; |
---|
| 133 | template class ast::ptr_base< ast::NullStmt, ast::Node::ref_type::strong >; |
---|
| 134 | template class ast::ptr_base< ast::ImplicitCtorDtorStmt, ast::Node::ref_type::weak >; |
---|
| 135 | template class ast::ptr_base< ast::ImplicitCtorDtorStmt, ast::Node::ref_type::strong >; |
---|
| 136 | template class ast::ptr_base< ast::Expr, ast::Node::ref_type::weak >; |
---|
| 137 | template class ast::ptr_base< ast::Expr, ast::Node::ref_type::strong >; |
---|
| 138 | template class ast::ptr_base< ast::ApplicationExpr, ast::Node::ref_type::weak >; |
---|
| 139 | template class ast::ptr_base< ast::ApplicationExpr, ast::Node::ref_type::strong >; |
---|
| 140 | template class ast::ptr_base< ast::UntypedExpr, ast::Node::ref_type::weak >; |
---|
| 141 | template class ast::ptr_base< ast::UntypedExpr, ast::Node::ref_type::strong >; |
---|
| 142 | template class ast::ptr_base< ast::NameExpr, ast::Node::ref_type::weak >; |
---|
| 143 | template class ast::ptr_base< ast::NameExpr, ast::Node::ref_type::strong >; |
---|
| 144 | template class ast::ptr_base< ast::AddressExpr, ast::Node::ref_type::weak >; |
---|
| 145 | template class ast::ptr_base< ast::AddressExpr, ast::Node::ref_type::strong >; |
---|
| 146 | template class ast::ptr_base< ast::LabelAddressExpr, ast::Node::ref_type::weak >; |
---|
| 147 | template class ast::ptr_base< ast::LabelAddressExpr, ast::Node::ref_type::strong >; |
---|
| 148 | template class ast::ptr_base< ast::CastExpr, ast::Node::ref_type::weak >; |
---|
| 149 | template class ast::ptr_base< ast::CastExpr, ast::Node::ref_type::strong >; |
---|
| 150 | template class ast::ptr_base< ast::KeywordCastExpr, ast::Node::ref_type::weak >; |
---|
| 151 | template class ast::ptr_base< ast::KeywordCastExpr, ast::Node::ref_type::strong >; |
---|
| 152 | template class ast::ptr_base< ast::VirtualCastExpr, ast::Node::ref_type::weak >; |
---|
| 153 | template class ast::ptr_base< ast::VirtualCastExpr, ast::Node::ref_type::strong >; |
---|
| 154 | template class ast::ptr_base< ast::MemberExpr, ast::Node::ref_type::weak >; |
---|
| 155 | template class ast::ptr_base< ast::MemberExpr, ast::Node::ref_type::strong >; |
---|
| 156 | template class ast::ptr_base< ast::UntypedMemberExpr, ast::Node::ref_type::weak >; |
---|
| 157 | template class ast::ptr_base< ast::UntypedMemberExpr, ast::Node::ref_type::strong >; |
---|
| 158 | template class ast::ptr_base< ast::VariableExpr, ast::Node::ref_type::weak >; |
---|
| 159 | template class ast::ptr_base< ast::VariableExpr, ast::Node::ref_type::strong >; |
---|
| 160 | template class ast::ptr_base< ast::ConstantExpr, ast::Node::ref_type::weak >; |
---|
| 161 | template class ast::ptr_base< ast::ConstantExpr, ast::Node::ref_type::strong >; |
---|
| 162 | template class ast::ptr_base< ast::SizeofExpr, ast::Node::ref_type::weak >; |
---|
| 163 | template class ast::ptr_base< ast::SizeofExpr, ast::Node::ref_type::strong >; |
---|
| 164 | template class ast::ptr_base< ast::AlignofExpr, ast::Node::ref_type::weak >; |
---|
| 165 | template class ast::ptr_base< ast::AlignofExpr, ast::Node::ref_type::strong >; |
---|
| 166 | template class ast::ptr_base< ast::UntypedOffsetofExpr, ast::Node::ref_type::weak >; |
---|
| 167 | template class ast::ptr_base< ast::UntypedOffsetofExpr, ast::Node::ref_type::strong >; |
---|
| 168 | template class ast::ptr_base< ast::OffsetofExpr, ast::Node::ref_type::weak >; |
---|
| 169 | template class ast::ptr_base< ast::OffsetofExpr, ast::Node::ref_type::strong >; |
---|
| 170 | template class ast::ptr_base< ast::OffsetPackExpr, ast::Node::ref_type::weak >; |
---|
| 171 | template class ast::ptr_base< ast::OffsetPackExpr, ast::Node::ref_type::strong >; |
---|
| 172 | template class ast::ptr_base< ast::LogicalExpr, ast::Node::ref_type::weak >; |
---|
| 173 | template class ast::ptr_base< ast::LogicalExpr, ast::Node::ref_type::strong >; |
---|
| 174 | template class ast::ptr_base< ast::ConditionalExpr, ast::Node::ref_type::weak >; |
---|
| 175 | template class ast::ptr_base< ast::ConditionalExpr, ast::Node::ref_type::strong >; |
---|
| 176 | template class ast::ptr_base< ast::CommaExpr, ast::Node::ref_type::weak >; |
---|
| 177 | template class ast::ptr_base< ast::CommaExpr, ast::Node::ref_type::strong >; |
---|
| 178 | template class ast::ptr_base< ast::TypeExpr, ast::Node::ref_type::weak >; |
---|
| 179 | template class ast::ptr_base< ast::TypeExpr, ast::Node::ref_type::strong >; |
---|
| 180 | template class ast::ptr_base< ast::AsmExpr, ast::Node::ref_type::weak >; |
---|
| 181 | template class ast::ptr_base< ast::AsmExpr, ast::Node::ref_type::strong >; |
---|
| 182 | template class ast::ptr_base< ast::ImplicitCopyCtorExpr, ast::Node::ref_type::weak >; |
---|
| 183 | template class ast::ptr_base< ast::ImplicitCopyCtorExpr, ast::Node::ref_type::strong >; |
---|
| 184 | template class ast::ptr_base< ast::ConstructorExpr, ast::Node::ref_type::weak >; |
---|
| 185 | template class ast::ptr_base< ast::ConstructorExpr, ast::Node::ref_type::strong >; |
---|
| 186 | template class ast::ptr_base< ast::CompoundLiteralExpr, ast::Node::ref_type::weak >; |
---|
| 187 | template class ast::ptr_base< ast::CompoundLiteralExpr, ast::Node::ref_type::strong >; |
---|
| 188 | template class ast::ptr_base< ast::RangeExpr, ast::Node::ref_type::weak >; |
---|
| 189 | template class ast::ptr_base< ast::RangeExpr, ast::Node::ref_type::strong >; |
---|
| 190 | template class ast::ptr_base< ast::UntypedTupleExpr, ast::Node::ref_type::weak >; |
---|
| 191 | template class ast::ptr_base< ast::UntypedTupleExpr, ast::Node::ref_type::strong >; |
---|
| 192 | template class ast::ptr_base< ast::TupleExpr, ast::Node::ref_type::weak >; |
---|
| 193 | template class ast::ptr_base< ast::TupleExpr, ast::Node::ref_type::strong >; |
---|
| 194 | template class ast::ptr_base< ast::TupleIndexExpr, ast::Node::ref_type::weak >; |
---|
| 195 | template class ast::ptr_base< ast::TupleIndexExpr, ast::Node::ref_type::strong >; |
---|
| 196 | template class ast::ptr_base< ast::TupleAssignExpr, ast::Node::ref_type::weak >; |
---|
| 197 | template class ast::ptr_base< ast::TupleAssignExpr, ast::Node::ref_type::strong >; |
---|
| 198 | template class ast::ptr_base< ast::StmtExpr, ast::Node::ref_type::weak >; |
---|
| 199 | template class ast::ptr_base< ast::StmtExpr, ast::Node::ref_type::strong >; |
---|
| 200 | template class ast::ptr_base< ast::UniqueExpr, ast::Node::ref_type::weak >; |
---|
| 201 | template class ast::ptr_base< ast::UniqueExpr, ast::Node::ref_type::strong >; |
---|
| 202 | template class ast::ptr_base< ast::UntypedInitExpr, ast::Node::ref_type::weak >; |
---|
| 203 | template class ast::ptr_base< ast::UntypedInitExpr, ast::Node::ref_type::strong >; |
---|
| 204 | template class ast::ptr_base< ast::InitExpr, ast::Node::ref_type::weak >; |
---|
| 205 | template class ast::ptr_base< ast::InitExpr, ast::Node::ref_type::strong >; |
---|
| 206 | template class ast::ptr_base< ast::DeletedExpr, ast::Node::ref_type::weak >; |
---|
| 207 | template class ast::ptr_base< ast::DeletedExpr, ast::Node::ref_type::strong >; |
---|
| 208 | template class ast::ptr_base< ast::DefaultArgExpr, ast::Node::ref_type::weak >; |
---|
| 209 | template class ast::ptr_base< ast::DefaultArgExpr, ast::Node::ref_type::strong >; |
---|
| 210 | template class ast::ptr_base< ast::GenericExpr, ast::Node::ref_type::weak >; |
---|
| 211 | template class ast::ptr_base< ast::GenericExpr, ast::Node::ref_type::strong >; |
---|
| 212 | template class ast::ptr_base< ast::Type, ast::Node::ref_type::weak >; |
---|
| 213 | template class ast::ptr_base< ast::Type, ast::Node::ref_type::strong >; |
---|
| 214 | template class ast::ptr_base< ast::VoidType, ast::Node::ref_type::weak >; |
---|
| 215 | template class ast::ptr_base< ast::VoidType, ast::Node::ref_type::strong >; |
---|
| 216 | template class ast::ptr_base< ast::BasicType, ast::Node::ref_type::weak >; |
---|
| 217 | template class ast::ptr_base< ast::BasicType, ast::Node::ref_type::strong >; |
---|
| 218 | template class ast::ptr_base< ast::PointerType, ast::Node::ref_type::weak >; |
---|
| 219 | template class ast::ptr_base< ast::PointerType, ast::Node::ref_type::strong >; |
---|
| 220 | template class ast::ptr_base< ast::ArrayType, ast::Node::ref_type::weak >; |
---|
| 221 | template class ast::ptr_base< ast::ArrayType, ast::Node::ref_type::strong >; |
---|
| 222 | template class ast::ptr_base< ast::ReferenceType, ast::Node::ref_type::weak >; |
---|
| 223 | template class ast::ptr_base< ast::ReferenceType, ast::Node::ref_type::strong >; |
---|
| 224 | template class ast::ptr_base< ast::QualifiedType, ast::Node::ref_type::weak >; |
---|
| 225 | template class ast::ptr_base< ast::QualifiedType, ast::Node::ref_type::strong >; |
---|
| 226 | template class ast::ptr_base< ast::FunctionType, ast::Node::ref_type::weak >; |
---|
| 227 | template class ast::ptr_base< ast::FunctionType, ast::Node::ref_type::strong >; |
---|
| 228 | template class ast::ptr_base< ast::ReferenceToType, ast::Node::ref_type::weak >; |
---|
| 229 | template class ast::ptr_base< ast::ReferenceToType, ast::Node::ref_type::strong >; |
---|
| 230 | template class ast::ptr_base< ast::StructInstType, ast::Node::ref_type::weak >; |
---|
| 231 | template class ast::ptr_base< ast::StructInstType, ast::Node::ref_type::strong >; |
---|
| 232 | template class ast::ptr_base< ast::UnionInstType, ast::Node::ref_type::weak >; |
---|
| 233 | template class ast::ptr_base< ast::UnionInstType, ast::Node::ref_type::strong >; |
---|
| 234 | template class ast::ptr_base< ast::EnumInstType, ast::Node::ref_type::weak >; |
---|
| 235 | template class ast::ptr_base< ast::EnumInstType, ast::Node::ref_type::strong >; |
---|
| 236 | template class ast::ptr_base< ast::TraitInstType, ast::Node::ref_type::weak >; |
---|
| 237 | template class ast::ptr_base< ast::TraitInstType, ast::Node::ref_type::strong >; |
---|
| 238 | template class ast::ptr_base< ast::TypeInstType, ast::Node::ref_type::weak >; |
---|
| 239 | template class ast::ptr_base< ast::TypeInstType, ast::Node::ref_type::strong >; |
---|
| 240 | template class ast::ptr_base< ast::TupleType, ast::Node::ref_type::weak >; |
---|
| 241 | template class ast::ptr_base< ast::TupleType, ast::Node::ref_type::strong >; |
---|
| 242 | template class ast::ptr_base< ast::TypeofType, ast::Node::ref_type::weak >; |
---|
| 243 | template class ast::ptr_base< ast::TypeofType, ast::Node::ref_type::strong >; |
---|
| 244 | template class ast::ptr_base< ast::VarArgsType, ast::Node::ref_type::weak >; |
---|
| 245 | template class ast::ptr_base< ast::VarArgsType, ast::Node::ref_type::strong >; |
---|
| 246 | template class ast::ptr_base< ast::ZeroType, ast::Node::ref_type::weak >; |
---|
| 247 | template class ast::ptr_base< ast::ZeroType, ast::Node::ref_type::strong >; |
---|
| 248 | template class ast::ptr_base< ast::OneType, ast::Node::ref_type::weak >; |
---|
| 249 | template class ast::ptr_base< ast::OneType, ast::Node::ref_type::strong >; |
---|
| 250 | template class ast::ptr_base< ast::GlobalScopeType, ast::Node::ref_type::weak >; |
---|
| 251 | template class ast::ptr_base< ast::GlobalScopeType, ast::Node::ref_type::strong >; |
---|
| 252 | template class ast::ptr_base< ast::Designation, ast::Node::ref_type::weak >; |
---|
| 253 | template class ast::ptr_base< ast::Designation, ast::Node::ref_type::strong >; |
---|
| 254 | template class ast::ptr_base< ast::Init, ast::Node::ref_type::weak >; |
---|
| 255 | template class ast::ptr_base< ast::Init, ast::Node::ref_type::strong >; |
---|
| 256 | template class ast::ptr_base< ast::SingleInit, ast::Node::ref_type::weak >; |
---|
| 257 | template class ast::ptr_base< ast::SingleInit, ast::Node::ref_type::strong >; |
---|
| 258 | template class ast::ptr_base< ast::ListInit, ast::Node::ref_type::weak >; |
---|
| 259 | template class ast::ptr_base< ast::ListInit, ast::Node::ref_type::strong >; |
---|
| 260 | template class ast::ptr_base< ast::ConstructorInit, ast::Node::ref_type::weak >; |
---|
| 261 | template class ast::ptr_base< ast::ConstructorInit, ast::Node::ref_type::strong >; |
---|
| 262 | template class ast::ptr_base< ast::Attribute, ast::Node::ref_type::weak >; |
---|
| 263 | template class ast::ptr_base< ast::Attribute, ast::Node::ref_type::strong >; |
---|
| 264 | template class ast::ptr_base< ast::TypeSubstitution, ast::Node::ref_type::weak >; |
---|
| 265 | template class ast::ptr_base< ast::TypeSubstitution, ast::Node::ref_type::strong >; |
---|