| 3216 | } |
| 3217 | |
| 3218 | int BfMethodRefType::GetDataIdxFromParamIdx(int paramIdx) |
| 3219 | { |
| 3220 | if (paramIdx == -1) |
| 3221 | { |
| 3222 | if (mMethodRef->HasThis()) |
| 3223 | return 0; |
| 3224 | return -1; |
| 3225 | } |
| 3226 | return mParamToDataIdx[paramIdx]; |
| 3227 | } |
| 3228 | |
| 3229 | int BfMethodRefType::GetParamIdxFromDataIdx(int dataIdx) |
| 3230 | { |
no test coverage detected