| 11355 | } |
| 11356 | |
| 11357 | BfMethodInstance* BfModule::GetRawMethodInstance(BfTypeInstance* typeInstance, BfMethodDef* methodDef) |
| 11358 | { |
| 11359 | if (methodDef->mIsLocalMethod) |
| 11360 | { |
| 11361 | return GetMethodInstance(typeInstance, methodDef, BfTypeVector()).mMethodInstance; |
| 11362 | } |
| 11363 | |
| 11364 | return GetRawMethodInstanceAtIdx(typeInstance, methodDef->mIdx, NULL); |
| 11365 | } |
| 11366 | |
| 11367 | BfMethodInstance* BfModule::GetRawMethodByName(BfTypeInstance* typeInstance, const StringImpl& methodName, int paramCount, bool checkBase, bool allowMixin) |
| 11368 | { |
no outgoing calls
no test coverage detected