File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -107,6 +107,8 @@ kt_javac_options(
107107 ("IrSymbolInternals" if version_less (v , "2.0.0" ) else "UnsafeDuringIrConstructionAPI" ),
108108 ] + (
109109 [] if version_less (v , "2.2.20" ) else ["org.jetbrains.kotlin.DeprecatedForRemovalCompilerApi" ]
110+ ) + (
111+ [] if version_less (v , "2.4.20" ) else ["org.jetbrains.kotlin.K1Deprecation" ]
110112 ),
111113 x_suppress_version_warnings = True ,
112114 ),
Original file line number Diff line number Diff line change @@ -96,8 +96,7 @@ class MetaAnnotationSupport(
9696 val metaAnnotations = annotationClass.annotations
9797 val jvmRepeatable =
9898 metaAnnotations.find {
99- it.symbol.owner.parentAsClass.fqNameWhenAvailable ==
100- JvmAnnotationNames .REPEATABLE_ANNOTATION
99+ it.annotationClass.fqNameWhenAvailable == JvmAnnotationNames .REPEATABLE_ANNOTATION
101100 }
102101 return if (jvmRepeatable != null ) {
103102 ((jvmRepeatable.codeQlGetValueArgument(0 ) as ? IrClassReference )?.symbol as ? IrClassSymbol )
You can’t perform that action at this time.
0 commit comments