| 2144 | } |
| 2145 | |
| 2146 | const ReflectionType* ReflectionType::unwrapArray() const |
| 2147 | { |
| 2148 | const ReflectionType* pType = this; |
| 2149 | while (auto pArrayType = pType->asArrayType()) |
| 2150 | { |
| 2151 | pType = pArrayType->getElementType(); |
| 2152 | } |
| 2153 | return pType; |
| 2154 | } |
| 2155 | |
| 2156 | uint32_t ReflectionType::getTotalArrayElementCount() const |
| 2157 | { |
no test coverage detected