made some interfaces exportable and fixed/enhaaced some selector operator versions

This commit is contained in:
2024-04-08 23:17:56 +02:00
parent aa195b9a68
commit 9ac88bf446
29 changed files with 99 additions and 98 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ func newListTerm(args []*term) *term {
}
// -------- list func
func evalList(ctx exprContext, self *term) (v any, err error) {
func evalList(ctx ExprContext, self *term) (v any, err error) {
items := make([]any, len(self.children))
for i, tree := range self.children {
var param any