Obj.toKotlin tiny fix

This commit is contained in:
Sergey Chernov 2026-01-16 06:00:39 +03:00
parent 7bc17037f9
commit d4bb186f85

View File

@ -429,10 +429,10 @@ open class Obj {
}
/**
* Convert Lyng object to its Kotlin counterpart
* Convert a Lyng object to its Kotlin counterpart
*/
open suspend fun toKotlin(scope: Scope): Any? {
return toString()
return toString(scope).value
}
fun willMutate(scope: Scope) {