moved scanner sources to package 'scan'
This commit is contained in:
@@ -12,7 +12,7 @@ import (
|
||||
type exprFunctor struct {
|
||||
kern.BaseFunctor
|
||||
params []kern.ExprFuncParam
|
||||
expr Expr
|
||||
expr kern.Expr
|
||||
defCtx kern.ExprContext
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ func (functor *exprFunctor) GetParams() (params []kern.ExprFuncParam) {
|
||||
return functor.params
|
||||
}
|
||||
|
||||
func newExprFunctor(e Expr, params []kern.ExprFuncParam, ctx kern.ExprContext) *exprFunctor {
|
||||
func newExprFunctor(e kern.Expr, params []kern.ExprFuncParam, ctx kern.ExprContext) *exprFunctor {
|
||||
var defCtx kern.ExprContext
|
||||
if ctx != nil {
|
||||
defCtx = ctx
|
||||
|
||||
Reference in New Issue
Block a user