aboutsummaryrefslogtreecommitdiffstats
path: root/kotlinx-coroutines-core/native/src/Debug.kt
blob: 653cb0697884ead27f5b5f1a1d760ec4e23aa627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.coroutines

import kotlin.math.*

internal actual val DEBUG: Boolean = false

internal actual val Any.hexAddress: String get() = abs(id().let { if (it == Int.MIN_VALUE) 0 else it }).toString(16)

internal actual val Any.classSimpleName: String get() = this::class.simpleName ?: "Unknown"

@SymbolName("Kotlin_Any_hashCode")
external fun Any.id(): Int // Note: can return negative value on K/N

internal actual inline fun assert(value: () -> Boolean) {}