ПГ
Size: a a a
ПГ
AM
AM
ПГ
AM
ПГ
AN
AM
VN
AM
AM
VN
MR
E/EventThread: Task threw exception
kotlinx.coroutines.JobCancellationException: StandaloneCoroutine was cancelled; job=StandaloneCoroutine{Cancelled}@70de65b
E/AndroidRuntime: FATAL EXCEPTION: EventThread
Process: com.osome.stage, PID: 18555
kotlinx.coroutines.JobCancellationException: StandaloneCoroutine was cancelled; job=StandaloneCoroutine{Cancelled}@70de65b
unbindScope.coroutineContext[Job]?.cancelChildren()
destroyScope.coroutineContext[Job]?.cancelChildren()
O
MK
inline class Foo(val fld: Int)
fun check() {
val klass = Foo::class.java
val annotation = klass.getAnnotation(Metadata::class.java)
val header = KotlinClassHeader(
annotation.kind,
annotation.metadataVersion,
annotation.bytecodeVersion,
annotation.data1,
annotation.data2,
annotation.extraString,
annotation.packageName,
annotation.extraInt
)
val metadata = KotlinClassMetadata.read(header)!! as KotlinClassMetadata.Class
val classFlags = metadata.toKmClass().flags
println("Is Foo inline? ${Flag.Class.IS_INLINE(classFlags)}")
}
implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.1.0")
)AN
AN
AN
MK
AN