moved a subset of source file to the kern package
This commit is contained in:
@@ -4,9 +4,13 @@
|
||||
// expr.go
|
||||
package expr
|
||||
|
||||
import (
|
||||
kern "git.portale-stac.it/go-pkg/expr/kern"
|
||||
)
|
||||
|
||||
// ----Expression interface
|
||||
type Expr interface {
|
||||
Typer
|
||||
Eval(ctx ExprContext) (result any, err error)
|
||||
kern.Typer
|
||||
Eval(ctx kern.ExprContext) (result any, err error)
|
||||
String() string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user