moved a subset of source file to the kern package
This commit is contained in:
+6
-2
@@ -4,6 +4,10 @@
|
||||
// operator-ctrl.go
|
||||
package expr
|
||||
|
||||
import (
|
||||
"git.portale-stac.it/go-pkg/expr/kern"
|
||||
)
|
||||
|
||||
//-------- export all term
|
||||
|
||||
func newExportAllTerm(tk *Token) (inst *term) {
|
||||
@@ -16,8 +20,8 @@ func newExportAllTerm(tk *Token) (inst *term) {
|
||||
}
|
||||
}
|
||||
|
||||
func evalExportAll(ctx ExprContext, opTerm *term) (v any, err error) {
|
||||
CtrlEnable(ctx, control_export_all)
|
||||
func evalExportAll(ctx kern.ExprContext, opTerm *term) (v any, err error) {
|
||||
CtrlEnable(ctx, kern.ControlExportAll)
|
||||
return
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user