moved scanner sources to package 'scan'

This commit is contained in:
2026-05-03 14:19:17 +02:00
parent f63ff5953e
commit 7f34ccf955
66 changed files with 1793 additions and 1726 deletions
+2 -1
View File
@@ -8,6 +8,7 @@ import (
"testing"
"git.portale-stac.it/go-pkg/expr/kern"
"git.portale-stac.it/go-pkg/expr/scan"
)
func TestOperatorEnding(t *testing.T) {
@@ -28,7 +29,7 @@ func TestOperatorEnding(t *testing.T) {
}
func testStringEndingWithOperator(source string) bool {
return StringEndsWithOperator(source)
return scan.StringEndsWithOperator(source)
}
func testStringArrayEndingWithOperatorSpec(t *testing.T, section string, inputs []inputType, spec ...int) {