| 16 | } |
| 17 | |
| 18 | Type::Ptr PrimitiveType::GetBaseType() const |
| 19 | { |
| 20 | if (m_Base == "None") |
| 21 | return nullptr; |
| 22 | else |
| 23 | return Type::GetByName(m_Base); |
| 24 | } |
| 25 | |
| 26 | int PrimitiveType::GetAttributes() const |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected