Improve error message for ObjList concatenation and set version to 1.1.0-SNAPSHOT.

This commit is contained in:
Sergey Chernov 2025-12-30 02:52:53 +01:00
parent 434d74b07f
commit 0731d63adf
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -105,7 +105,7 @@ class ObjList(val list: MutableList<Obj> = mutableListOf()) : Obj() {
}
else ->
scope.raiseError("'+': can't concatenate $this with $other")
scope.raiseError("'+': can't concatenate ${this.toString(scope)} with ${other.toString(scope)}")
}