| 1106 | } |
| 1107 | |
| 1108 | bool BfMethodInstance::HasThis() |
| 1109 | { |
| 1110 | if (mMethodDef->mIsStatic) |
| 1111 | return false; |
| 1112 | if ((mMethodInfoEx != NULL) && (mMethodInfoEx->mClosureInstanceInfo != NULL) && (mMethodInfoEx->mClosureInstanceInfo->mThisOverride != NULL)) |
| 1113 | return !mMethodInfoEx->mClosureInstanceInfo->mThisOverride->IsValuelessNonOpaqueType(); |
| 1114 | return (!mMethodInstanceGroup->mOwner->IsValuelessNonOpaqueType()); |
| 1115 | } |
| 1116 | |
| 1117 | bool BfMethodInstance::IsVirtual() |
| 1118 | { |
no test coverage detected