Skip to main content

luaur_code_gen/methods/
scoped_spills_operator_assign.rs

1use crate::records::scoped_spills::ScopedSpills;
2
3impl ScopedSpills {
4    pub fn scoped_spills_operator_assign(&mut self, _other: &ScopedSpills) -> &mut ScopedSpills {
5        // Assignment operator is deleted in C++ source; this is a no-op stub
6        self
7    }
8}