| 16035 | } |
| 16036 | |
| 16037 | BfLocalVariable* BfModule::GetThisVariable() |
| 16038 | { |
| 16039 | if (mCurMethodState == NULL) |
| 16040 | return NULL; |
| 16041 | auto methodState = mCurMethodState->GetNonCaptureState(); |
| 16042 | if ((methodState->mLocals.size() > 0) && (methodState->mLocals[0]->mIsThis)) |
| 16043 | return methodState->mLocals[0]; |
| 16044 | return NULL; |
| 16045 | } |
| 16046 | |
| 16047 | bool BfModule::IsInGeneric() |
| 16048 | { |
no test coverage detected