We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d34cf7 commit 1fe6c14Copy full SHA for 1fe6c14
src/main/kotlin/org/jetbrains/kotlin/jupyter/ikotlin.kt
@@ -75,6 +75,11 @@ fun main(vararg args: String) {
75
}
76
77
78
+/**
79
+ * This function is to be run in projects which use kernel as a library,
80
+ * so we don't have a big need in covering it with tests
81
+ */
82
+@Suppress("unused")
83
fun embedKernel(cfgFile: File, libraryFactory: LibraryFactory?, scriptReceivers: List<Any>?) {
84
val cp = System.getProperty("java.class.path").split(File.pathSeparator).toTypedArray().map { File(it) }
85
val config = KernelConfig.fromConfig(
0 commit comments