| 32 | } |
| 33 | |
| 34 | MMethod* MClass::FindMethod(const char* name, int32 numParams, bool checkBaseClasses) const |
| 35 | { |
| 36 | MMethod* method = GetMethod(name, numParams); |
| 37 | if (!method && checkBaseClasses) |
| 38 | { |
| 39 | MClass* base = GetBaseClass(); |
| 40 | if (base) |
| 41 | method = base->FindMethod(name, numParams, true); |
| 42 | } |
| 43 | return method; |
| 44 | } |
| 45 | |
| 46 | ScriptingTypeHandle::ScriptingTypeHandle(const ScriptingTypeInitializer& initializer) |
| 47 | : Module(initializer.Module) |