refactor: make shallow_move() available from AGCObjectVisitor

This commit is contained in:
Roland Conybeare 2026-04-06 00:11:08 -04:00
commit 547f897c31
52 changed files with 91 additions and 49 deletions

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DArrayType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DAtomicType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DFunctionType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DListType & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place

View file

@ -51,7 +51,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DTypeVarRef & self, obj<ACollector> gc) noexcept;
/** Invoke fn.visit_child(iface,data) for each child GCObject pointer.
Context: provides address of data pointer so it can be updated in place