refactor: rename RCollector.std_copy_for -> std_move_for
This commit is contained in:
parent
d16f2a0484
commit
489222311f
10 changed files with 10 additions and 10 deletions
|
|
@ -80,7 +80,7 @@ namespace xo {
|
|||
DConstant *
|
||||
DConstant::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ namespace xo {
|
|||
DDefineExpr *
|
||||
DDefineExpr::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -263,7 +263,7 @@ namespace xo {
|
|||
DGlobalSymtab *
|
||||
DGlobalSymtab::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ namespace xo {
|
|||
DIfElseExpr *
|
||||
DIfElseExpr::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ namespace xo {
|
|||
|
||||
DLambdaExpr *
|
||||
DLambdaExpr::shallow_move(obj<ACollector> gc) noexcept {
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ namespace xo {
|
|||
DLocalSymtab *
|
||||
DLocalSymtab::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ namespace xo {
|
|||
DSequenceExpr *
|
||||
DSequenceExpr::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ namespace xo {
|
|||
DTypename *
|
||||
DTypename::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
size_t
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ namespace xo {
|
|||
DVarRef *
|
||||
DVarRef::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ namespace xo {
|
|||
DVariable *
|
||||
DVariable::shallow_move(obj<ACollector> gc) noexcept
|
||||
{
|
||||
return gc.std_copy_for(this);
|
||||
return gc.std_move_for(this);
|
||||
}
|
||||
|
||||
size_t
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue