| 277 | } |
| 278 | |
| 279 | bool DebugInfoMap::isNullType(const ASTDefNode &Node) const { |
| 280 | QualType T; |
| 281 | if (const auto *Assigned = Node.getAssigned()) |
| 282 | T = Assigned->getType(); |
| 283 | else |
| 284 | T = Node.getAssignee().getType(); |
| 285 | return !T.getTypePtrOrNull(); |
| 286 | } |
| 287 | |
| 288 | bool DebugInfoMap::isTemplateType(const ASTDefNode &Node) const { |
| 289 | auto *TypePtr = Node.getAssignee().getType().getTypePtrOrNull(); |
nothing calls this directly
no test coverage detected