moved the exportVar() and exportFunc() functions from data-cursor.go to context-helpers.go

This commit is contained in:
2024-04-27 06:16:11 +02:00
parent 70892aa980
commit 361b84f31f
2 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -52,8 +52,8 @@ func (dc *dataCursor) Next() (item any, err error) { // must return io.EOF after
} else {
dc.index++
}
exportObjects(dc.ctx, ctx)
}
exportObjects(dc.ctx, ctx)
return
}