mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
[LC] Fixed light classes nullability for Kotlin 1.5
Fixed #KT-44472
This commit is contained in:
@@ -241,7 +241,7 @@ fun fastCheckIsNullabilityApplied(lightElement: KtLightElement<*, PsiModifierLis
|
|||||||
// backing fields for lateinit props are skipped
|
// backing fields for lateinit props are skipped
|
||||||
if (lightElement is KtLightField && annotatedElement is KtProperty && annotatedElement.hasModifier(KtTokens.LATEINIT_KEYWORD)) return false
|
if (lightElement is KtLightField && annotatedElement is KtProperty && annotatedElement.hasModifier(KtTokens.LATEINIT_KEYWORD)) return false
|
||||||
|
|
||||||
if (lightElement is KtLightField && (annotatedElement as? KtModifierListOwner)?.isPrivate() == true) {
|
if (lightElement is KtLightMethod && (annotatedElement as? KtModifierListOwner)?.isPrivate() == true) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -252,16 +252,17 @@ fun fastCheckIsNullabilityApplied(lightElement: KtLightElement<*, PsiModifierLis
|
|||||||
if (annotatedElement.parent.parent is KtPrimaryConstructor) return false
|
if (annotatedElement.parent.parent is KtPrimaryConstructor) return false
|
||||||
}
|
}
|
||||||
|
|
||||||
val parent = annotatedElement.parent.parent
|
when (val parent = annotatedElement.parent.parent) {
|
||||||
if (parent is KtModifierListOwner && parent !is KtPrimaryConstructor && parent.isPrivate()) return false
|
is KtConstructor<*> -> {
|
||||||
|
if (lightElement is KtLightParameter && parent.isPrivate()) return false
|
||||||
if (parent is KtPropertyAccessor) {
|
}
|
||||||
val propertyOfAccessor = parent.parent
|
is KtNamedFunction -> {
|
||||||
if (propertyOfAccessor is KtProperty && propertyOfAccessor.isPrivate()) return false
|
return !parent.isPrivate()
|
||||||
|
}
|
||||||
|
is KtPropertyAccessor -> {
|
||||||
|
return (parent.parent as? KtProperty)?.isPrivate() != true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
// private properties
|
|
||||||
if ((annotatedElement as? KtModifierListOwner)?.isPrivate() == true) return false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return true
|
return true
|
||||||
|
|||||||
@@ -14,4 +14,6 @@ class Test(@get:MyAnnotation @set:MyAnnotation2 @setparam:MyAnnotation3 @propert
|
|||||||
var @receiver:MyAnnotation7 Int.fooP
|
var @receiver:MyAnnotation7 Int.fooP
|
||||||
get() = Unit
|
get() = Unit
|
||||||
set(value) {}
|
set(value) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FIR_COMPARISON
|
||||||
@@ -3,6 +3,7 @@ public final class B /* p.B*/ {
|
|||||||
|
|
||||||
|
|
||||||
public static final class A /* p.B.A*/ implements p.I {
|
public static final class A /* p.B.A*/ implements p.I {
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final p.I f;
|
private final p.I f;
|
||||||
|
|
||||||
public A(@org.jetbrains.annotations.NotNull() p.I);// .ctor(p.I)
|
public A(@org.jetbrains.annotations.NotNull() p.I);// .ctor(p.I)
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
public final class B /* p.B*/ implements p.I {
|
public final class B /* p.B*/ implements p.I {
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final p.I f;
|
private final p.I f;
|
||||||
|
|
||||||
public B(@org.jetbrains.annotations.NotNull() p.I);// .ctor(p.I)
|
public B(@org.jetbrains.annotations.NotNull() p.I);// .ctor(p.I)
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
public final class A /* A*/ {
|
public final class A /* A*/ {
|
||||||
private final int i;
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
|
||||||
private final java.lang.String i$1;
|
private final java.lang.String i$1;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final java.lang.String j$1;
|
private final java.lang.String j$1;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final java.lang.String j;
|
private final java.lang.String j;
|
||||||
|
|
||||||
|
private final int i;
|
||||||
|
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
public final java.lang.String g(int, double);// g(int, double)
|
public final java.lang.String g(int, double);// g(int, double)
|
||||||
|
|
||||||
|
|||||||
@@ -8,10 +8,11 @@ public abstract interface TraitClassObjectField /* TraitClassObjectField*/ {
|
|||||||
|
|
||||||
public static final class Companion /* TraitClassObjectField.Companion*/ {
|
public static final class Companion /* TraitClassObjectField.Companion*/ {
|
||||||
@org.jetbrains.annotations.Nullable()
|
@org.jetbrains.annotations.Nullable()
|
||||||
public static final java.lang.String x = "" /* initializer type: java.lang.String */ /* constant value */;
|
|
||||||
|
|
||||||
private static final java.lang.String y;
|
private static final java.lang.String y;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.Nullable()
|
||||||
|
public static final java.lang.String x = "" /* initializer type: java.lang.String */ /* constant value */;
|
||||||
|
|
||||||
private Companion();// .ctor()
|
private Companion();// .ctor()
|
||||||
|
|
||||||
}}
|
}}
|
||||||
@@ -2,10 +2,11 @@ public final class SmartSet /* SmartSet*/<T> extends kotlin.collections.Abstrac
|
|||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
public static final SmartSet.Companion Companion;
|
public static final SmartSet.Companion Companion;
|
||||||
|
|
||||||
private int size;
|
@org.jetbrains.annotations.Nullable()
|
||||||
|
|
||||||
private java.lang.Object data;
|
private java.lang.Object data;
|
||||||
|
|
||||||
|
private int size;
|
||||||
|
|
||||||
private static final int ARRAY_THRESHOLD;
|
private static final int ARRAY_THRESHOLD;
|
||||||
|
|
||||||
@kotlin.jvm.JvmStatic()
|
@kotlin.jvm.JvmStatic()
|
||||||
|
|||||||
@@ -2,6 +2,9 @@ public final class Class /* Class*/ {
|
|||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final java.lang.String notNullVal;
|
private final java.lang.String notNullVal;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
private final java.lang.String privateNN;
|
||||||
|
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
private java.lang.String notNullVar;
|
private java.lang.String notNullVar;
|
||||||
|
|
||||||
@@ -9,11 +12,10 @@ public final class Class /* Class*/ {
|
|||||||
private final java.lang.String nullableVal;
|
private final java.lang.String nullableVal;
|
||||||
|
|
||||||
@org.jetbrains.annotations.Nullable()
|
@org.jetbrains.annotations.Nullable()
|
||||||
private java.lang.String nullableVar;
|
|
||||||
|
|
||||||
private final java.lang.String privateN;
|
private final java.lang.String privateN;
|
||||||
|
|
||||||
private final java.lang.String privateNN;
|
@org.jetbrains.annotations.Nullable()
|
||||||
|
private java.lang.String nullableVar;
|
||||||
|
|
||||||
public java.lang.String lateInitVar;
|
public java.lang.String lateInitVar;
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ public final class ClassObjectField /* ClassObjectField*/ {
|
|||||||
@org.jetbrains.annotations.Nullable()
|
@org.jetbrains.annotations.Nullable()
|
||||||
private static final java.lang.String x;
|
private static final java.lang.String x;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.Nullable()
|
||||||
private static final java.lang.String y;
|
private static final java.lang.String y;
|
||||||
|
|
||||||
public ClassObjectField();// .ctor()
|
public ClassObjectField();// .ctor()
|
||||||
|
|||||||
@@ -4,3 +4,5 @@ class ClassWithConstructorAndProperties(
|
|||||||
val nullable: String?,
|
val nullable: String?,
|
||||||
val notNull: String
|
val notNull: String
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// FIR_COMPARISON
|
||||||
@@ -2,6 +2,9 @@ public final class FileFacadeKt /* FileFacadeKt*/ {
|
|||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
private static final java.lang.String notNullVal;
|
private static final java.lang.String notNullVal;
|
||||||
|
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
|
private static final java.lang.String privateNn;
|
||||||
|
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
private static java.lang.String notNullVar;
|
private static java.lang.String notNullVar;
|
||||||
|
|
||||||
@@ -9,11 +12,10 @@ public final class FileFacadeKt /* FileFacadeKt*/ {
|
|||||||
private static final java.lang.String nullableVal;
|
private static final java.lang.String nullableVal;
|
||||||
|
|
||||||
@org.jetbrains.annotations.Nullable()
|
@org.jetbrains.annotations.Nullable()
|
||||||
private static java.lang.String nullableVar;
|
|
||||||
|
|
||||||
private static final java.lang.String privateN;
|
private static final java.lang.String privateN;
|
||||||
|
|
||||||
private static final java.lang.String privateNn;
|
@org.jetbrains.annotations.Nullable()
|
||||||
|
private static java.lang.String nullableVar;
|
||||||
|
|
||||||
@org.jetbrains.annotations.NotNull()
|
@org.jetbrains.annotations.NotNull()
|
||||||
@org.jetbrains.annotations.Nullable()
|
@org.jetbrains.annotations.Nullable()
|
||||||
|
|||||||
@@ -33,4 +33,6 @@ var nullableVarWithGetSet: String?
|
|||||||
|
|
||||||
private val privateNn: String = { "" }()
|
private val privateNn: String = { "" }()
|
||||||
private val privateN: String? = { "" }()
|
private val privateN: String? = { "" }()
|
||||||
private fun privateFun(a: String, b: String?): String? = null
|
private fun privateFun(a: String, b: String?): String? = null
|
||||||
|
|
||||||
|
// FIR_COMPARISON
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
public final class Prop /* Prop*/ {
|
public final class Prop /* Prop*/ {
|
||||||
|
@org.jetbrains.annotations.NotNull()
|
||||||
private final java.lang.Object someProp;
|
private final java.lang.Object someProp;
|
||||||
|
|
||||||
public Prop();// .ctor()
|
public Prop();// .ctor()
|
||||||
|
|||||||
@@ -1320,8 +1320,8 @@ fun main(args: Array<String>) {
|
|||||||
testClass<AbstractIdeCompiledLightClassTest> {
|
testClass<AbstractIdeCompiledLightClassTest> {
|
||||||
model(
|
model(
|
||||||
"asJava/lightClasses",
|
"asJava/lightClasses",
|
||||||
excludeDirs = listOf("local", "compilationErrors", "ideRegression"),
|
excludeDirs = listOf("local", "compilationErrors", "ideRegression", "script"),
|
||||||
pattern = KT_OR_KTS_WITHOUT_DOTS_IN_NAME
|
pattern = KT_WITHOUT_DOTS_IN_NAME
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -885,7 +885,7 @@ fun main(args: Array<String>) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
testClass<AbstractIdeCompiledLightClassTest> {
|
testClass<AbstractIdeCompiledLightClassTest> {
|
||||||
model("asJava/lightClasses", excludeDirs = listOf("local", "compilationErrors", "ideRegression"), pattern = KT_OR_KTS_WITHOUT_DOTS_IN_NAME)
|
model("asJava/lightClasses", excludeDirs = listOf("local", "compilationErrors", "ideRegression", "script"), pattern = KT_WITHOUT_DOTS_IN_NAME)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ internal class FirLightFieldForPropertySymbol(
|
|||||||
modifiers.add(PsiModifier.VOLATILE)
|
modifiers.add(PsiModifier.VOLATILE)
|
||||||
}
|
}
|
||||||
|
|
||||||
val nullability = if (visibility != PsiModifier.PRIVATE && !(propertySymbol is KtKotlinPropertySymbol && propertySymbol.isLateInit))
|
val nullability = if (!(propertySymbol is KtKotlinPropertySymbol && propertySymbol.isLateInit))
|
||||||
propertySymbol.annotatedType.type.getTypeNullability(propertySymbol, FirResolvePhase.IMPLICIT_TYPES_BODY_RESOLVE)
|
propertySymbol.annotatedType.type.getTypeNullability(propertySymbol, FirResolvePhase.IMPLICIT_TYPES_BODY_RESOLVE)
|
||||||
else NullabilityType.Unknown
|
else NullabilityType.Unknown
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ public class IdeCompiledLightClassTestGenerated extends AbstractIdeCompiledLight
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testAllFilesPresentInLightClasses() throws Exception {
|
public void testAllFilesPresentInLightClasses() throws Exception {
|
||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses"), Pattern.compile("^([^.]+)\\.(kt|kts)$"), null, true, "local", "compilationErrors", "ideRegression");
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses"), Pattern.compile("^([^.]+)\\.kt$"), null, true, "local", "compilationErrors", "ideRegression", "script");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("AnnotatedParameterInEnumConstructor.kt")
|
@TestMetadata("AnnotatedParameterInEnumConstructor.kt")
|
||||||
@@ -178,7 +178,7 @@ public class IdeCompiledLightClassTestGenerated extends AbstractIdeCompiledLight
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testAllFilesPresentInDelegation() throws Exception {
|
public void testAllFilesPresentInDelegation() throws Exception {
|
||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/delegation"), Pattern.compile("^([^.]+)\\.(kt|kts)$"), null, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/delegation"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("Function.kt")
|
@TestMetadata("Function.kt")
|
||||||
@@ -201,7 +201,7 @@ public class IdeCompiledLightClassTestGenerated extends AbstractIdeCompiledLight
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testAllFilesPresentInFacades() throws Exception {
|
public void testAllFilesPresentInFacades() throws Exception {
|
||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/facades"), Pattern.compile("^([^.]+)\\.(kt|kts)$"), null, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/facades"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("AllPrivate.kt")
|
@TestMetadata("AllPrivate.kt")
|
||||||
@@ -234,7 +234,7 @@ public class IdeCompiledLightClassTestGenerated extends AbstractIdeCompiledLight
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testAllFilesPresentInNullabilityAnnotations() throws Exception {
|
public void testAllFilesPresentInNullabilityAnnotations() throws Exception {
|
||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/nullabilityAnnotations"), Pattern.compile("^([^.]+)\\.(kt|kts)$"), null, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/nullabilityAnnotations"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("Class.kt")
|
@TestMetadata("Class.kt")
|
||||||
@@ -337,7 +337,7 @@ public class IdeCompiledLightClassTestGenerated extends AbstractIdeCompiledLight
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testAllFilesPresentInObject() throws Exception {
|
public void testAllFilesPresentInObject() throws Exception {
|
||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/object"), Pattern.compile("^([^.]+)\\.(kt|kts)$"), null, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/object"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("SimpleObject.kt")
|
@TestMetadata("SimpleObject.kt")
|
||||||
@@ -355,7 +355,7 @@ public class IdeCompiledLightClassTestGenerated extends AbstractIdeCompiledLight
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testAllFilesPresentInPublicField() throws Exception {
|
public void testAllFilesPresentInPublicField() throws Exception {
|
||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/publicField"), Pattern.compile("^([^.]+)\\.(kt|kts)$"), null, true);
|
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/publicField"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("CompanionObject.kt")
|
@TestMetadata("CompanionObject.kt")
|
||||||
@@ -368,27 +368,4 @@ public class IdeCompiledLightClassTestGenerated extends AbstractIdeCompiledLight
|
|||||||
runTest("compiler/testData/asJava/lightClasses/publicField/Simple.kt");
|
runTest("compiler/testData/asJava/lightClasses/publicField/Simple.kt");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("compiler/testData/asJava/lightClasses/script")
|
|
||||||
@TestDataPath("$PROJECT_ROOT")
|
|
||||||
@RunWith(JUnit3RunnerWithInners.class)
|
|
||||||
public static class Script extends AbstractIdeCompiledLightClassTest {
|
|
||||||
private void runTest(String testDataFilePath) throws Exception {
|
|
||||||
KotlinTestUtils.runTest(this::doTest, this, testDataFilePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testAllFilesPresentInScript() throws Exception {
|
|
||||||
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/asJava/lightClasses/script"), Pattern.compile("^([^.]+)\\.(kt|kts)$"), null, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("HelloWorld.kts")
|
|
||||||
public void testHelloWorld() throws Exception {
|
|
||||||
runTest("compiler/testData/asJava/lightClasses/script/HelloWorld.kts");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("InnerClasses.kts")
|
|
||||||
public void testInnerClasses() throws Exception {
|
|
||||||
runTest("compiler/testData/asJava/lightClasses/script/InnerClasses.kts");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -97,13 +97,6 @@ org.jetbrains.kotlin.jps.build.KotlinJpsBuildTestIncremental.testCircularDepende
|
|||||||
org.jetbrains.kotlin.jps.build.KotlinJpsBuildTestIncremental.testCircularDependenciesSamePackageWithTests, Temporary muted due to problems with IC and JVM IR backend,,
|
org.jetbrains.kotlin.jps.build.KotlinJpsBuildTestIncremental.testCircularDependenciesSamePackageWithTests, Temporary muted due to problems with IC and JVM IR backend,,
|
||||||
org.jetbrains.kotlin.jps.build.KotlinJpsBuildTestIncremental.testCircularDependenciesWrongInternalFromTests, Temporary muted due to problems with IC and JVM IR backend,,
|
org.jetbrains.kotlin.jps.build.KotlinJpsBuildTestIncremental.testCircularDependenciesWrongInternalFromTests, Temporary muted due to problems with IC and JVM IR backend,,
|
||||||
org.jetbrains.kotlin.jps.build.KotlinJpsBuildTestIncremental.testCircularDependencyWithReferenceToOldVersionLib, Temporary muted due to problems with IC and JVM IR backend,,
|
org.jetbrains.kotlin.jps.build.KotlinJpsBuildTestIncremental.testCircularDependencyWithReferenceToOldVersionLib, Temporary muted due to problems with IC and JVM IR backend,,
|
||||||
org.jetbrains.kotlin.idea.caches.resolve.IdeCompiledLightClassTestGenerated.NullabilityAnnotations.testClass, KT-44472,,
|
|
||||||
org.jetbrains.kotlin.idea.caches.resolve.IdeCompiledLightClassTestGenerated.NullabilityAnnotations.testClassObjectField, KT-44472,,
|
|
||||||
org.jetbrains.kotlin.idea.caches.resolve.IdeCompiledLightClassTestGenerated.NullabilityAnnotations.testFileFacade, KT-44472,,
|
|
||||||
org.jetbrains.kotlin.idea.caches.resolve.IdeCompiledLightClassTestGenerated.Script.testHelloWorld, KT-44472,,
|
|
||||||
org.jetbrains.kotlin.idea.caches.resolve.IdeCompiledLightClassTestGenerated.Script.testInnerClasses, KT-44472,,
|
|
||||||
org.jetbrains.kotlin.idea.caches.resolve.IdeCompiledLightClassTestGenerated.testDelegatedNested, KT-44472,,
|
|
||||||
org.jetbrains.kotlin.idea.caches.resolve.IdeCompiledLightClassTestGenerated.testDelegation, KT-44472,,
|
|
||||||
org.jetbrains.kotlin.jps.build.IncrementalJvmJpsTestGenerated.WithJava.JavaUsedInKotlin.SamConversions.testMethodAdded, KT-44844 fixed in IDEA 212,,
|
org.jetbrains.kotlin.jps.build.IncrementalJvmJpsTestGenerated.WithJava.JavaUsedInKotlin.SamConversions.testMethodAdded, KT-44844 fixed in IDEA 212,,
|
||||||
org.jetbrains.kotlin.jps.build.IncrementalJvmJpsTestGenerated.WithJava.JavaUsedInKotlin.SamConversions.testMethodAddedSamAdapter, KT-44844 fixed in IDEA 212,,
|
org.jetbrains.kotlin.jps.build.IncrementalJvmJpsTestGenerated.WithJava.JavaUsedInKotlin.SamConversions.testMethodAddedSamAdapter, KT-44844 fixed in IDEA 212,,
|
||||||
org.jetbrains.kotlin.jps.build.IncrementalJvmJpsTestGenerated.WithJava.JavaUsedInKotlin.SamConversions.testMethodSignatureChanged, KT-44844 fixed in IDEA 212,,
|
org.jetbrains.kotlin.jps.build.IncrementalJvmJpsTestGenerated.WithJava.JavaUsedInKotlin.SamConversions.testMethodSignatureChanged, KT-44844 fixed in IDEA 212,,
|
||||||
|
|||||||
|
Reference in New Issue
Block a user