cleanup pycharm: Make LibraryTypeEvalContext and OptimizedTypeEvalContext private

GitOrigin-RevId: d9a9103f832e064d9d0637a835c2aa253b15f1cd
This commit is contained in:
evgeny.bovykin
2026-02-02 20:52:59 +00:00
committed by intellij-monorepo-bot
parent a5a9d49923
commit e62ccaf7fd
@@ -532,7 +532,7 @@ public sealed class TypeEvalContext {
}
}
final static class LibraryTypeEvalContext extends TypeEvalContext {
private final static class LibraryTypeEvalContext extends TypeEvalContext {
private LibraryTypeEvalContext(@NotNull TypeEvalConstraints constraints) {
super(constraints);
}
@@ -544,7 +544,7 @@ public sealed class TypeEvalContext {
}
}
final static class OptimizedTypeEvalContext extends TypeEvalContext {
private final static class OptimizedTypeEvalContext extends TypeEvalContext {
private volatile TypeEvalContext codeInsightFallback;
OptimizedTypeEvalContext(boolean allowDataFlow, boolean allowStubToAST, boolean allowCallContext, @Nullable PsiFile origin) {