| 3204 | ////////////////////////////////////////////////////////////////////////// |
| 3205 | |
| 3206 | int BfMethodRefType::GetCaptureDataCount() |
| 3207 | { |
| 3208 | if (mMethodRef == NULL) |
| 3209 | return 0; |
| 3210 | return (int)mDataToParamIdx.size(); |
| 3211 | } |
| 3212 | |
| 3213 | BfType* BfMethodRefType::GetCaptureType(int captureDataIdx) |
| 3214 | { |
no test coverage detected