| 298 | } |
| 299 | |
| 300 | const Scope *getScope(const std::string &addr) { |
| 301 | auto it = mDeclMap.find(addr); |
| 302 | return (it == mDeclMap.end() ? nullptr : it->second.scope); |
| 303 | } |
| 304 | |
| 305 | // "}" tokens that are not end-of-scope |
| 306 | std::set<Token *> mNotScope; |
no test coverage detected