| 11664 | } |
| 11665 | |
| 11666 | BfModuleMethodInstance BfModule::GetInternalMethod(const StringImpl& methodName, int paramCount) |
| 11667 | { |
| 11668 | auto internalType = ResolveTypeDef(mCompiler->mInternalTypeDef); |
| 11669 | PopulateType(internalType); |
| 11670 | auto moduleMethodInstance = GetMethodByName(internalType->ToTypeInstance(), methodName, paramCount); |
| 11671 | if (!moduleMethodInstance) |
| 11672 | { |
| 11673 | Fail(StrFormat("Failed to find System.Internal method '%s'", methodName.c_str())); |
| 11674 | } |
| 11675 | return moduleMethodInstance; |
| 11676 | } |
| 11677 | |
| 11678 | BfOperatorInfo* BfModule::GetOperatorInfo(BfTypeInstance* typeInstance, BfOperatorDef* operatorDef) |
| 11679 | { |
no test coverage detected