diff --git a/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassInitializer.kt b/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassInitializer.kt index 69362858689..9527b5b990e 100644 --- a/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassInitializer.kt +++ b/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassInitializer.kt @@ -11,10 +11,10 @@ class MyClass() { } //package test -//internal open class A defined in test +//public open class A defined in test //public constructor A() defined in test.A -//internal final class MyClass defined in test +//public final class MyClass defined in test //public constructor MyClass() defined in test.MyClass //val a: test.MyClass.. defined in test.MyClass. //local final class : test.A defined in test.MyClass. -//internal constructor () defined in test.MyClass.. \ No newline at end of file +//public constructor () defined in test.MyClass.. \ No newline at end of file diff --git a/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassParameterInitializer.kt b/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassParameterInitializer.kt index f2e8174e67b..b65a2e77cac 100644 --- a/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassParameterInitializer.kt +++ b/idea/testData/resolve/additionalLazyResolve/anonymousObjectInClassParameterInitializer.kt @@ -9,10 +9,10 @@ class MyClass( ) //package test -//internal open class A defined in test +//public open class A defined in test //public constructor A() defined in test.A -//internal final class MyClass defined in test +//public final class MyClass defined in test //public constructor MyClass(a: test.A = ...) defined in test.MyClass //value-parameter val a: test.A = ... defined in test.MyClass. //local final class : test.A defined in test.MyClass. -//internal constructor () defined in test.MyClass.. \ No newline at end of file +//public constructor () defined in test.MyClass.. \ No newline at end of file diff --git a/idea/testData/resolve/additionalLazyResolve/localClassInClassInitializer.kt b/idea/testData/resolve/additionalLazyResolve/localClassInClassInitializer.kt index 2bd796ae114..4134efccd11 100644 --- a/idea/testData/resolve/additionalLazyResolve/localClassInClassInitializer.kt +++ b/idea/testData/resolve/additionalLazyResolve/localClassInClassInitializer.kt @@ -11,9 +11,9 @@ class MyClass() { } //package test -//internal open class A defined in test +//public open class A defined in test //public constructor A() defined in test.A -//internal final class MyClass defined in test +//public final class MyClass defined in test //public constructor MyClass() defined in test.MyClass //local final class B : test.A defined in test.MyClass. //public constructor B() defined in test.MyClass..B \ No newline at end of file diff --git a/idea/testData/resolve/additionalLazyResolve/localClassInClosureInClassParameterInitializer.kt b/idea/testData/resolve/additionalLazyResolve/localClassInClosureInClassParameterInitializer.kt index 1b858edb9c5..25bff0a367a 100644 --- a/idea/testData/resolve/additionalLazyResolve/localClassInClosureInClassParameterInitializer.kt +++ b/idea/testData/resolve/additionalLazyResolve/localClassInClosureInClassParameterInitializer.kt @@ -13,9 +13,9 @@ class MyClass( ) //package test -//internal open class A defined in test +//public open class A defined in test //public constructor A() defined in test.A -//internal final class MyClass defined in test +//public final class MyClass defined in test //public constructor MyClass(a: test.A = ...) defined in test.MyClass //value-parameter val a: test.A = ... defined in test.MyClass. //local final class B : test.A defined in test.MyClass.. diff --git a/idea/testData/resolve/additionalLazyResolve/localObjectInClassInitializer.kt b/idea/testData/resolve/additionalLazyResolve/localObjectInClassInitializer.kt index 8d09e1731c4..d23bd349514 100644 --- a/idea/testData/resolve/additionalLazyResolve/localObjectInClassInitializer.kt +++ b/idea/testData/resolve/additionalLazyResolve/localObjectInClassInitializer.kt @@ -11,9 +11,9 @@ class MyClass() { } //package test -//internal open class A defined in test +//public open class A defined in test //public constructor A() defined in test.A -//internal final class MyClass defined in test +//public final class MyClass defined in test //public constructor MyClass() defined in test.MyClass //local object O : test.A defined in test.MyClass. //private constructor O() defined in test.MyClass..O \ No newline at end of file diff --git a/idea/testData/resolve/additionalLazyResolve/localObjectInClosureInClassParameterInitializer.kt b/idea/testData/resolve/additionalLazyResolve/localObjectInClosureInClassParameterInitializer.kt index 893c2f9ce52..f31313790bf 100644 --- a/idea/testData/resolve/additionalLazyResolve/localObjectInClosureInClassParameterInitializer.kt +++ b/idea/testData/resolve/additionalLazyResolve/localObjectInClosureInClassParameterInitializer.kt @@ -13,9 +13,9 @@ class MyClass( ) //package test -//internal open class A defined in test +//public open class A defined in test //public constructor A() defined in test.A -//internal final class MyClass defined in test +//public final class MyClass defined in test //public constructor MyClass(a: test.A = ...) defined in test.MyClass //value-parameter val a: test.A = ... defined in test.MyClass. //local object O : test.A defined in test.MyClass..