[FE] Add isLocal name to ClassId constructor calls where it needed

This commit is contained in:
Dmitriy Novozhilov
2023-09-19 13:08:42 +03:00
committed by Space Team
parent adaf8ae46a
commit 9e5ee3afa0
39 changed files with 55 additions and 55 deletions
@@ -296,9 +296,9 @@ private sealed class FqNameInterpretation {
return when {
classParts.isEmpty() && callable == null -> FqNameInterpretationAsPackage(packageName)
callable == null -> FqNameInterpretationAsClassId(ClassId(packageName, relativeClassName, false))
callable == null -> FqNameInterpretationAsClassId(ClassId(packageName, relativeClassName, isLocal = false))
else -> FqNameInterpretationAsCallableId(CallableId(packageName, relativeClassName.takeUnless { it.isRoot }, callable))
}
}
}
}
}