diff --git a/lynglib/build.gradle.kts b/lynglib/build.gradle.kts index 705b09a..e755f26 100644 --- a/lynglib/build.gradle.kts +++ b/lynglib/build.gradle.kts @@ -21,7 +21,7 @@ import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl import org.jetbrains.kotlin.gradle.dsl.JvmTarget group = "net.sergeych" -version = "1.1.0-beta2" +version = "1.1.0-SNAPSHOT" // Removed legacy buildscript classpath declarations; plugins are applied via the plugins DSL below diff --git a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjList.kt b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjList.kt index acbf999..92c888d 100644 --- a/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjList.kt +++ b/lynglib/src/commonMain/kotlin/net/sergeych/lyng/obj/ObjList.kt @@ -105,7 +105,7 @@ class ObjList(val list: MutableList = mutableListOf()) : Obj() { } else -> - scope.raiseError("'+': can't concatenate $this with $other") + scope.raiseError("'+': can't concatenate ${this.toString(scope)} with ${other.toString(scope)}") }