Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 15d114f

Browse files
committedNov 22, 2020
Change file extension for snippets
1 parent 8401ddc commit 15d114f

File tree

3 files changed

+8
-2
lines changed
  • jupyter-lib/kotlin-jupyter-api/src/main/kotlin/org/jetbrains/kotlin/jupyter/config
  • src
    • main/kotlin/org/jetbrains/kotlin/jupyter
    • test/kotlin/org/jetbrains/kotlin/jupyter/test

3 files changed

+8
-2
lines changed
 

‎jupyter-lib/kotlin-jupyter-api/src/main/kotlin/org/jetbrains/kotlin/jupyter/config/compilation.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fun getCompilationConfiguration(
2626
return ScriptCompilationConfiguration {
2727
hostConfiguration.update { it.withDefaultsFrom(defaultJvmScriptingHostConfiguration) }
2828
baseClass.put(KotlinType(ScriptTemplateWithDisplayHelpers::class))
29-
fileExtension.put("jupyter.kts")
29+
fileExtension.put("jupyter-kts")
3030

3131
val classImports = listOf(
3232
DependsOn::class,

‎src/main/kotlin/org/jetbrains/kotlin/jupyter/repl.kt

+6
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ import kotlin.script.experimental.api.asDiagnostics
4444
import kotlin.script.experimental.api.asSuccess
4545
import kotlin.script.experimental.api.constructorArgs
4646
import kotlin.script.experimental.api.dependencies
47+
import kotlin.script.experimental.api.fileExtension
4748
import kotlin.script.experimental.api.foundAnnotations
4849
import kotlin.script.experimental.api.implicitReceivers
4950
import kotlin.script.experimental.api.onSuccess
@@ -128,6 +129,8 @@ interface ReplForJupyter {
128129
var outputConfig: OutputConfig
129130

130131
val notebook: NotebookImpl
132+
133+
val fileExtension: String
131134
}
132135

133136
class ReplForJupyterImpl(
@@ -290,6 +293,9 @@ class ReplForJupyterImpl(
290293
}
291294
}
292295

296+
override val fileExtension: String
297+
get() = compilerConfiguration[ScriptCompilationConfiguration.fileExtension]!!
298+
293299
private val ScriptCompilationConfiguration.classpath
294300
get() = this[ScriptCompilationConfiguration.dependencies]
295301
?.filterIsInstance<JvmDependency>()

‎src/test/kotlin/org/jetbrains/kotlin/jupyter/test/replTests.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class ReplTest : AbstractReplTest() {
100100
val message = ex.message
101101

102102
val expectedLocation = SourceCode.Location(SourceCode.Position(3, 11), SourceCode.Position(3, 14))
103-
val expectedMessage = "Line_0.jupyter.kts (3:11 - 14) Unresolved reference: ppp"
103+
val expectedMessage = "Line_0.${repl.fileExtension} (3:11 - 14) Unresolved reference: ppp"
104104

105105
assertEquals(expectedLocation, location)
106106
assertEquals(expectedMessage, message)

0 commit comments

Comments
 (0)
Please sign in to comment.