com.lightningkite.khrysalis.analysis.KotlinInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-plugin-common Show documentation
Show all versions of kotlin-compiler-plugin-common Show documentation
Common translational tools between Typescript and Swift.
The newest version!
package com.lightningkite.khrysalis.analysis
import org.jetbrains.kotlin.lexer.KtTokens
object KotlinInfo {
val neverExpressionTokens = setOf(
KtTokens.EQ,
KtTokens.PLUSEQ,
KtTokens.MINUSEQ,
KtTokens.MULTEQ,
KtTokens.DIVEQ,
KtTokens.PERCEQ
)
val dontReturnTypes = setOf("kotlin.Unit", "kotlin.Nothing")
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy