| 151 | } |
| 152 | |
| 153 | bool Type::isFixedLengthArrayPtr() const { |
| 154 | if (this->isPointerType() && PtrInfo) { |
| 155 | if (const auto *ArrInfo = this->getArrayInfo()) { |
| 156 | return ArrInfo->getLengthType() == ArrayInfo::FIXED; |
| 157 | } |
| 158 | } |
| 159 | return false; |
| 160 | } |
| 161 | |
| 162 | std::string Type::getASTTypeName() const { |
| 163 | std::string Ret = ASTTypeName; |