More improvements on expr vars & rec values

This commit is contained in:
Denis Arh
2021-03-30 15:53:13 +02:00
parent 597c18fd16
commit 333b2f344f
11 changed files with 75 additions and 92 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ func push(arr interface{}, nn ...interface{}) (out interface{}, err error) {
stv = append(stv, tv)
} else {
// wrap unknown types...
stv = append(stv, Must(Cast(n)))
stv = append(stv, Must(Typify(n)))
}
}