| 369 | } |
| 370 | |
| 371 | void Function::addFnDecl(FnDecl &&decl) { |
| 372 | if (find_if(fn_decls.begin(), fn_decls.end(), |
| 373 | [&](auto &d) { return d.name == decl.name; }) != fn_decls.end()) |
| 374 | return; |
| 375 | fn_decls.emplace_back(std::move(decl)); |
| 376 | } |
| 377 | |
| 378 | Function::UsersTy Function::getUsers() const { |
| 379 | UsersTy users; |
no test coverage detected