[go: nahoru, domu]

blob: a4a8d00cf6fc93e72a9b413d69a4bb36fadd4a56 [file] [log] [blame]
Mihai Popadd63fc372020-03-30 19:53:50 +01001/*
Nikolay Igotti438fdbf2020-06-25 12:05:58 +03002 * Copyright 2019 The Android Open Source Project
Mihai Popadd63fc372020-03-30 19:53:50 +01003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Mihai Popadd63fc372020-03-30 19:53:50 +010016package androidx.ui.core
17
Nikolay Igotti438fdbf2020-06-25 12:05:58 +030018internal inline fun ifDebug(block: () -> Unit) {
19 // Right now, we always run these. At a later point, we may revisit this
20 block()
Mihai Popadd63fc372020-03-30 19:53:50 +010021}
Nikolay Igotti438fdbf2020-06-25 12:05:58 +030022
23internal expect fun simpleIdentityToString(obj: Any, name: String?): String