FIR: Fix interface delegation ABI
- Unifies the name of the `$$delegate_<n>` field between K1 and K2. - Make the `$$delegate_<n>` field private
This commit is contained in:
committed by
Space Team
parent
91749737f8
commit
a7ba081d22
@@ -59,14 +59,14 @@ class AnnotationLoader {
|
||||
}
|
||||
|
||||
override fun visitArray(): Visitor? {
|
||||
return <this>.#<$$delegate_0>.visitArray()
|
||||
return <this>.#$$delegate_0.visitArray()
|
||||
}
|
||||
|
||||
override fun visitAnnotation(): Visitor? {
|
||||
return <this>.#<$$delegate_0>.visitAnnotation()
|
||||
return <this>.#$$delegate_0.visitAnnotation()
|
||||
}
|
||||
|
||||
local /* final field */ val <$$delegate_0>: Visitor = visitor
|
||||
private /* final field */ val $$delegate_0: Visitor = visitor
|
||||
override fun visit() {
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user