refactor: make shallow_move() available from AGCObjectVisitor

This commit is contained in:
Roland Conybeare 2026-04-06 00:11:08 -04:00
commit ee521d3337
7 changed files with 7 additions and 7 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(DArray & 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(DBoolean & 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(DDictionary & 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(DRuntimeError & 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(DList & 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

@ -52,7 +52,7 @@ namespace xo {
// const methods
// non-const methods
/** move instance using allocator **/
/** move instance using collector **/
static Opaque shallow_move(DFloat & 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(DInteger & 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