K/N: add fake compiler arguments (only to be used in IDEA plugin)

This commit is contained in:
Dmitriy Dolovov
2018-09-07 14:25:42 +03:00
committed by Mikhail Glukhikh
parent f663c0ea87
commit 22e6948d7d
2 changed files with 7 additions and 153 deletions
@@ -6,7 +6,6 @@
package org.jetbrains.kotlin.ide.konan
import org.jetbrains.kotlin.cli.common.arguments.CommonCompilerArguments
import org.jetbrains.kotlin.cli.common.arguments.konan.K2NativeCompilerArguments
import org.jetbrains.kotlin.config.TargetPlatformVersion
import org.jetbrains.kotlin.platform.IdePlatform
import org.jetbrains.kotlin.platform.IdePlatformKind
@@ -15,7 +14,7 @@ import org.jetbrains.kotlin.resolve.konan.platform.KonanPlatform
object NativeIdePlatformKind : IdePlatformKind<NativeIdePlatformKind>() {
override fun platformByCompilerArguments(arguments: CommonCompilerArguments): IdePlatform<NativeIdePlatformKind, CommonCompilerArguments>? {
return if (arguments is K2NativeCompilerArguments) Platform
return if (arguments is FakeK2NativeCompilerArguments) Platform
else null
}
@@ -24,20 +23,23 @@ object NativeIdePlatformKind : IdePlatformKind<NativeIdePlatformKind>() {
override val platforms get() = listOf(Platform)
override val defaultPlatform get() = Platform
override val argumentsClass get() = K2NativeCompilerArguments::class.java
override val argumentsClass get() = FakeK2NativeCompilerArguments::class.java
override val name get() = "Native"
object Platform : IdePlatform<NativeIdePlatformKind, K2NativeCompilerArguments>() {
object Platform : IdePlatform<NativeIdePlatformKind, FakeK2NativeCompilerArguments>() {
override val kind get() = NativeIdePlatformKind
override val version get() = TargetPlatformVersion.NoVersion
override fun createArguments(init: K2NativeCompilerArguments.() -> Unit) = K2NativeCompilerArguments().apply(init)
override fun createArguments(init: FakeK2NativeCompilerArguments.() -> Unit) = FakeK2NativeCompilerArguments().apply(init)
}
override fun equals(other: Any?): Boolean = other === NativeIdePlatformKind
override fun hashCode(): Int = javaClass.hashCode()
}
// These are fake compiler arguments for Kotlin/Native - only for usage within IDEA plugin:
class FakeK2NativeCompilerArguments : CommonCompilerArguments()
val IdePlatformKind<*>?.isKotlinNative
get() = this === NativeIdePlatformKind