| 246 | } |
| 247 | |
| 248 | void funcDecl(const std::string &addr, Token *nameToken, Function *function) { |
| 249 | Decl decl(nameToken, function); |
| 250 | mDeclMap.emplace(addr, decl); |
| 251 | nameToken->function(function); |
| 252 | notFound(addr); |
| 253 | } |
| 254 | |
| 255 | void scopeDecl(const std::string &addr, Scope *scope) { |
| 256 | Decl decl(scope); |
no test coverage detected