diff --git a/experiments/student-backend/src/org/jetbrains/kotlin/cli/student/K2StudentLlvm.kt b/experiments/student-backend/src/org/jetbrains/kotlin/cli/student/K2StudentLlvm.kt new file mode 100644 index 00000000000..010ef4c4c06 --- /dev/null +++ b/experiments/student-backend/src/org/jetbrains/kotlin/cli/student/K2StudentLlvm.kt @@ -0,0 +1,23 @@ +package org.jetbrains.kotlin.cli.student + +import org.jetbrains.kotlin.cli.common.CLICompiler +import org.jetbrains.kotlin.cli.common.ExitCode + +/** + * Created by minamoto on 14/09/16. + */ + +public class K2StudentLlvm : CLICompiler { + override fun createArguments(): K2StudentLlvmArguments { + TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + } + + override fun setupPlatformSpecificArgumentsAndServices(configuration: CompilerConfiguration?, arguments: K2StudentLlvmArguments?, services: Services?) { + TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + } + + override fun doExecute(arguments: K2StudentLlvmArguments?, configuration: CompilerConfiguration?, rootDisposable: MediaDisposer.Disposable?): ExitCode { + TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + } + +} \ No newline at end of file diff --git a/experiments/student-backend/src/org/jetbrains/kotlin/cli/student/K2StudentLlvmArguments.java b/experiments/student-backend/src/org/jetbrains/kotlin/cli/student/K2StudentLlvmArguments.java new file mode 100644 index 00000000000..9bff1f6a461 --- /dev/null +++ b/experiments/student-backend/src/org/jetbrains/kotlin/cli/student/K2StudentLlvmArguments.java @@ -0,0 +1,9 @@ +package org.jetbrains.kotlin.cli.student; + +import org.jetbrains.kotlin.cli.common.arguments.CommonCompilerArguments; + +/** + * Created by minamoto on 14/09/16. + */ +public class K2StudentLlvmArguments extends CommonCompilerArguments { +} diff --git a/experiments/student-backend/student-backend.iml b/experiments/student-backend/student-backend.iml new file mode 100644 index 00000000000..1f8d569d9fe --- /dev/null +++ b/experiments/student-backend/student-backend.iml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file