Function call moved from operand-func.go to function.go

This commit is contained in:
2024-06-17 06:54:50 +02:00
parent 24e6a293b0
commit ba479a1b99
5 changed files with 59 additions and 47 deletions
+6
View File
@@ -41,3 +41,9 @@ func exportObjects(destCtx, sourceCtx ExprContext) {
}
}
}
func exportObjectsToParent(sourceCtx ExprContext) {
if parentCtx := sourceCtx.GetParent(); parentCtx != nil {
exportObjects(parentCtx, sourceCtx)
}
}