| 606 | } |
| 607 | |
| 608 | StructDef *Parser::LookupStruct(const std::string &id) const { |
| 609 | auto sd = structs_.Lookup(id); |
| 610 | if (sd) sd->refcount++; |
| 611 | return sd; |
| 612 | } |
| 613 | |
| 614 | StructDef *Parser::LookupStructThruParentNamespaces( |
| 615 | const std::string &id) const { |
no test coverage detected