All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.resolve.jvm.checkers.dalvikIdentifierUtils.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
 * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
 */

@file:JvmName("DalvikIdentifierUtils")
package org.jetbrains.kotlin.resolve.jvm.checkers

fun isValidDalvikIdentifier(identifier: String): Boolean = identifier.all { isValidDalvikCharacter(it) }

// https://source.android.com/devices/tech/dalvik/dex-format.html#string-syntax
fun isValidDalvikCharacter(c: Char): Boolean = when (c) {
    in 'A'..'Z' -> true
    in 'a'..'z' -> true
    in '0'..'9' -> true
    '$', '-', '_' -> true
    in '\u00a1' .. '\u1fff' -> true
    in '\u2010' .. '\u2027' -> true
    in '\u2030' .. '\ud7ff' -> true
    in '\ue000' .. '\uffef' -> true
    else -> false
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy