| 253 | } |
| 254 | |
| 255 | void scopeDecl(const std::string &addr, Scope *scope) { |
| 256 | Decl decl(scope); |
| 257 | mDeclMap.emplace(addr, decl); |
| 258 | } |
| 259 | |
| 260 | void varDecl(const std::string &addr, Token *def, Variable *var) { |
| 261 | Decl decl(def, var); |
no outgoing calls
no test coverage detected