| 1324 | } |
| 1325 | |
| 1326 | bool BfMethodInstance::IsImplicitCapture(int paramIdx) |
| 1327 | { |
| 1328 | if (paramIdx == -1) |
| 1329 | return false; |
| 1330 | BfMethodParam* methodParam = &mParams[paramIdx]; |
| 1331 | if (methodParam->mParamDefIdx == -1) |
| 1332 | return true; |
| 1333 | return false; |
| 1334 | } |
| 1335 | |
| 1336 | BfExpression* BfMethodInstance::GetParamInitializer(int paramIdx) |
| 1337 | { |
no outgoing calls
no test coverage detected