| 1155 | } |
| 1156 | |
| 1157 | int BfMethodInstance::GetImplicitParamCount() |
| 1158 | { |
| 1159 | if ((mMethodInfoEx != NULL) && (mMethodInfoEx->mClosureInstanceInfo != NULL) && (mMethodDef->mIsLocalMethod)) |
| 1160 | return (int)mMethodInfoEx->mClosureInstanceInfo->mCaptureEntries.size(); |
| 1161 | return 0; |
| 1162 | } |
| 1163 | |
| 1164 | void BfMethodInstance::GetParamName(int paramIdx, StringImpl& name, int& namePrefixCount) |
| 1165 | { |
no test coverage detected