| 1597 | } |
| 1598 | |
| 1599 | int BfMethodInstance::GetIRFunctionParamCount(BfModule* module) |
| 1600 | { |
| 1601 | //TODO: This is dumb, do this better |
| 1602 | SizedArray<BfIRType, 8> params; |
| 1603 | BfIRType returnType; |
| 1604 | GetIRFunctionInfo(module, returnType, params); |
| 1605 | return (int)params.size(); |
| 1606 | } |
| 1607 | |
| 1608 | bool BfMethodInstance::IsExactMatch(BfMethodInstance* other, bool ignoreImplicitParams, bool checkThis) |
| 1609 | { |
no test coverage detected