| 2096 | } |
| 2097 | |
| 2098 | void DbgType::EnsureMethodsMapped() |
| 2099 | { |
| 2100 | for (auto methodNameEntry : mMethodNameList) |
| 2101 | { |
| 2102 | if (methodNameEntry->mCompileUnitId != -1) |
| 2103 | { |
| 2104 | mCompileUnit->mDbgModule->MapCompileUnitMethods(methodNameEntry->mCompileUnitId); |
| 2105 | methodNameEntry->mCompileUnitId = -1; |
| 2106 | } |
| 2107 | } |
| 2108 | } |
| 2109 | |
| 2110 | #define CREATE_PRIMITIVE_C(typeCode, cTypeName, type) \ |
| 2111 | dbgType = mAlloc.Alloc<DbgType>(); \ |
nothing calls this directly
no test coverage detected