| 4068 | } |
| 4069 | |
| 4070 | BfStaticSearch* BfModule::GetStaticSearch() |
| 4071 | { |
| 4072 | auto activeTypeDef = GetActiveTypeDef(); |
| 4073 | BfStaticSearch* staticSearch = NULL; |
| 4074 | if ((mCurTypeInstance != NULL) && (mCurTypeInstance->mStaticSearchMap.TryGetValue(activeTypeDef, &staticSearch))) |
| 4075 | return staticSearch; |
| 4076 | if ((mCompiler->mResolvePassData != NULL) && (mCompiler->mResolvePassData->mStaticSearchMap.TryGetValue(activeTypeDef, &staticSearch))) |
| 4077 | return staticSearch; |
| 4078 | return NULL; |
| 4079 | } |
| 4080 | |
| 4081 | BfInternalAccessSet* BfModule::GetInternalAccessSet() |
| 4082 | { |
no test coverage detected