| 49 | } |
| 50 | |
| 51 | bool FindOpLoadMethod(const std::string& op_name, const std::string& method_name) |
| 52 | { |
| 53 | std::string key = op_name + method_name; |
| 54 | |
| 55 | if(op_method_load_map.ExistAttr(key)) |
| 56 | return true; |
| 57 | |
| 58 | return false; |
| 59 | } |
| 60 | |
| 61 | any& GetOpLoadMethod(const std::string& op_name, const std::string& method_name) |
| 62 | { |
no test coverage detected