refactored data-types to reduce plugin sizes
This commit is contained in:
+3
-3
@@ -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},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user