| 27 | bool VisitDeclStmt(const clang::DeclStmt *S); |
| 28 | }; |
| 29 | struct DefLocKey { |
| 30 | std::string Path; |
| 31 | unsigned Offset; |
| 32 | |
| 33 | bool operator<(const DefLocKey &RHS) const; |
| 34 | }; |
| 35 | |
| 36 | std::map<DefLocKey, std::shared_ptr<Definition>> KeyDefMap; |
| 37 | std::map<unsigned, std::shared_ptr<Definition>> IDDefMap; |