| 83 | bool LookupMethod(const cString& meth_name, int& mid) { return s_method_dict->Find(meth_name, mid); } |
| 84 | |
| 85 | int GetArity(int mid) const { return (*s_methods)[mid]->GetArity(); } |
| 86 | const sASTypeInfo& GetArgumentType(int mid, int arg) const { return (*s_methods)[mid]->GetArgumentType(arg); } |
| 87 | const sASTypeInfo& GetReturnType(int mid) const { return (*s_methods)[mid]->GetReturnType(); } |
| 88 |
no outgoing calls
no test coverage detected