refactor: make shallow_move() available from AGCObjectVisitor

This commit is contained in:
Roland Conybeare 2026-04-06 00:11:08 -04:00
commit f9f2822099
11 changed files with 11 additions and 11 deletions

View file

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

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

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

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

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

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

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

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

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

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