Update synthetic parameter processing logic according to ASM 7 changes
#KT-27774 Fixed
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// IntelliJ API Decompiler stub source generated from a class file
|
||||
// Implementation of methods is not available
|
||||
|
||||
package test
|
||||
|
||||
public final enum class AnnotatedParameterInEnumConstructor private constructor(@test.AnnoA a: kotlin.String, @test.AnnoB b: kotlin.String) : kotlin.Enum<test.AnnotatedParameterInEnumConstructor> {
|
||||
A;
|
||||
}
|
||||
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
package test
|
||||
|
||||
annotation class AnnoA
|
||||
annotation class AnnoB
|
||||
|
||||
enum class AnnotatedParameterInEnumConstructor(@AnnoA a: String, @AnnoB b: String) {
|
||||
A("1", "b")
|
||||
}
|
||||
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
// IntelliJ API Decompiler stub source generated from a class file
|
||||
// Implementation of methods is not available
|
||||
|
||||
package test
|
||||
|
||||
public final class AnnotatedParameterInInnerClassConstructor public constructor() {
|
||||
public final inner class Inner public constructor(@test.AnnoA a: kotlin.String, @test.AnnoB b: kotlin.String) {
|
||||
}
|
||||
|
||||
public final inner class InnerGeneric<T> public constructor(@test.AnnoA a: T, @test.AnnoB b: kotlin.String) {
|
||||
}
|
||||
}
|
||||
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package test
|
||||
|
||||
annotation class AnnoA
|
||||
annotation class AnnoB
|
||||
|
||||
class AnnotatedParameterInInnerClassConstructor {
|
||||
|
||||
inner class Inner(@AnnoA a: String, @AnnoB b: String) {
|
||||
|
||||
}
|
||||
|
||||
inner class InnerGeneric<T>(@AnnoA a: T, @AnnoB b: String) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user