| 2475 | } |
| 2476 | |
| 2477 | void DbgModule::PopulateStaticVariableMap() |
| 2478 | { |
| 2479 | if (mPopulatedStaticVariables) |
| 2480 | return; |
| 2481 | |
| 2482 | for (auto staticVariable : mStaticVariables) |
| 2483 | { |
| 2484 | mStaticVariableMap[staticVariable->GetMappedName()] = staticVariable; |
| 2485 | } |
| 2486 | |
| 2487 | mPopulatedStaticVariables = true; |
| 2488 | } |
| 2489 | |
| 2490 | void DbgModule::ProcessDebugInfo() |
| 2491 | { |