Merge remote-tracking branch

'origin/GP-6100_ghizard_PDB_fix_NPE_for_null_function_container' into
patch (Closes #8596)
This commit is contained in:
Ryan Kurtz
2025-11-17 06:14:36 -05:00

View File

@@ -2228,6 +2228,9 @@ public class DefaultPdbApplicator implements PdbApplicator {
//==============================================================================================
void predefineClass(SymbolPath classPath) {
if (classPath == null) {
return;
}
isClassByNamespace.put(classPath, true);
for (SymbolPath path = classPath.getParent(); path != null; path = path.getParent()) {
if (!isClassByNamespace.containsKey(path)) {