You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All annotations would be removed from $default methods, it can break quasar instrumentation.
Default companion for function 'foo' with N parameter generated by next template:
fun foo(param1: Type1...., paramN: TypeN): ResultType
[static] [synthetic flag] [bridge flag]? fun foo$default(param1: Type1...paramN: typeN, mask0:Int..mask[N-1/32]: Int, object: Object)
Sample bytecode
public final class Foo {
public final foo(Ljava/lang/String;Ljava/lang/String;)V
public static synthetic foo$default(LFoo;Ljava/lang/String;Ljava/lang/String;ILjava/lang/Object;)V
}
Bridge flag was generated prior Kotlin 1.3
The text was updated successfully, but these errors were encountered:
Kotlin team considers to removed change that was made for https://youtrack.jetbrains.com/issue/KT-6930 with annotation generation on default methods ('foo$default', JetBrains/kotlin@fd4946e#diff-c4b3d1cabf0518d85f061842d839bd32R617).
All annotations would be removed from $default methods, it can break quasar instrumentation.
Default companion for function 'foo' with N parameter generated by next template:
Sample bytecode
Bridge flag was generated prior Kotlin 1.3
The text was updated successfully, but these errors were encountered: