kotlin.script.experimental.jvm.util.SnippetsHistory.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-main-kts Show documentation
Show all versions of kotlin-main-kts Show documentation
Kotlin "main" script definition
/*
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package kotlin.script.experimental.jvm.util
import java.io.Serializable
import java.util.*
typealias CompiledHistoryItem = Pair
typealias CompiledHistoryStorage = ArrayList>
typealias CompiledHistoryList = List>
/*
WARNING: Not thread safe, the caller is assumed to lock access.
*/
open class SnippetsHistory(startingHistory: CompiledHistoryList = emptyList()) : Serializable {
protected val history: CompiledHistoryStorage = ArrayList(startingHistory)
fun add(line: CompiledT, value: ResultT) {
history.add(line to value)
}
fun lastItem(): CompiledHistoryItem? = history.lastOrNull()
fun lastValue(): ResultT? = lastItem()?.second
val items: List> = history
fun isEmpty(): Boolean = history.isEmpty()
fun isNotEmpty(): Boolean = history.isNotEmpty()
companion object {
private const val serialVersionUID: Long = 8328353001L
}
}