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
View File
@@ -9,8 +9,6 @@ import (
"reflect"
"strings"
"testing"
"git.portale-stac.it/go-pkg/expr/kern"
)
func TestScanner(t *testing.T) {
@@ -62,7 +60,6 @@ func TestScanner(t *testing.T) {
/* 38 */ {`\`, SymError, errors.New("incomplete escape sequence"), nil},
/* 39 */ {`"string"`, SymString, "string", nil},
/* 40 */ {`identifier`, SymIdentifier, "identifier", nil},
/* 41 */ {`1.2(3)`, SymFraction, kern.NewFraction(37, 30), nil},
}
for i, input := range inputs {