org.jetbrains.kotlin.name.SpecialNames.kt Maven / Gradle / Ivy
/*
* Copyright 2010-2015 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.kotlin.name
object SpecialNames {
@JvmField
val NO_NAME_PROVIDED = Name.special("")
@JvmField
val ROOT_PACKAGE = Name.special("")
@JvmField
val DEFAULT_NAME_FOR_COMPANION_OBJECT = Name.identifier("Companion")
// This name is used as a key for the case when something has no name _due to a syntactic error_
// Example: fun (x: Int) = 5
// There's no name for this function in the PSI
// The name contains a GUID to avoid clashes, if a clash happens, it's not a big deal: the code does not compile anyway
@JvmField
val SAFE_IDENTIFIER_FOR_NO_NAME = Name.identifier("no_name_in_PSI_3d19d79d_1ba9_4cd0_b7f5_b46aa3cd5d40")
const val ANONYMOUS_STRING = ""
@JvmField
val ANONYMOUS = Name.special(ANONYMOUS_STRING)
@JvmField
val UNARY = Name.special("")
@JvmField
val UNARY_RESULT = Name.special("")
@JvmField
val THIS = Name.special("")
@JvmField
val INIT = Name.special("")
@JvmField
val ITERATOR = Name.special("")
@JvmField
val DESTRUCT = Name.special("")
@JvmField
val LOCAL = Name.special("")
@JvmField
val UNDERSCORE_FOR_UNUSED_VAR = Name.special("")
@JvmField
val IMPLICIT_SET_PARAMETER = Name.special("")
@JvmField
val ARRAY = Name.special("")
@JvmField
val RECEIVER = Name.special("")
/**
* Special name to store expressions used as indexes in subscription operators (`get` and `set`).
*
* For example, `bar1()` and `bar2()` are indexes in `foo[bar1(), bar2()]` call.
*/
@JvmStatic
fun subscribeOperatorIndex(idx: Int): Name {
require(idx >= 0) { "Index should be non-negative, but was $idx" }
return Name.special("")
}
@JvmStatic
fun safeIdentifier(name: Name?): Name {
return if (name != null && !name.isSpecial) name else SAFE_IDENTIFIER_FOR_NO_NAME
}
@JvmStatic
fun safeIdentifier(name: String?): Name {
return safeIdentifier(if (name == null) null else Name.identifier(name))
}
fun isSafeIdentifier(name: Name): Boolean {
return name.asString().isNotEmpty() && !name.isSpecial
}
}