refactored data-types to reduce plugin sizes

This commit is contained in:
2026-06-08 07:02:56 +02:00
parent fec7cc546c
commit b6da9bcad4
90 changed files with 1039 additions and 803 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ package expr
import (
"testing"
"git.portale-stac.it/go-pkg/expr/kern"
"git.portale-stac.it/go-pkg/expr/types/list"
)
func TestCtrlSet(t *testing.T) {
@@ -82,8 +82,8 @@ func TestList(t *testing.T) {
section := "Context"
inputs := []inputType{
/* 1 */ {`$$(5)`, kern.NewLinkedListA(5), nil},
/* 2 */ {`$$($(2))`, kern.NewLinkedListA(0, 1), nil},
/* 1 */ {`$$(5)`, list.NewLinkedListA(5), nil},
/* 2 */ {`$$($(2))`, list.NewLinkedListA(0, 1), nil},
/* 3 */ {`string(($$global).funcs.bool)`, `bool(value):boolean{}`, nil},
}