| 1065 | } |
| 1066 | |
| 1067 | BfImportCallKind BfMethodInstance::GetImportCallKind() |
| 1068 | { |
| 1069 | if (GetImportKind() != BfImportKind_Import_Dynamic) |
| 1070 | return BfImportCallKind_None; |
| 1071 | if ((mHotMethod != NULL) && ((mHotMethod->mFlags & BfHotDepDataFlag_IsOriginalBuild) == 0)) |
| 1072 | return BfImportCallKind_GlobalVar_Hot; |
| 1073 | return BfImportCallKind_GlobalVar; |
| 1074 | } |
| 1075 | |
| 1076 | bool BfMethodInstance::IsTestMethod() |
| 1077 | { |
no outgoing calls
no test coverage detected