(&mut self)
| 129 | |
| 130 | impl<R: for<'gc> Rootable<'gc>> Drop for DynamicRoot<R> { |
| 131 | fn drop(&mut self) { |
| 132 | if let Some(slots) = self.slots.upgrade() { |
| 133 | slots.borrow_mut().dec(self.index); |
| 134 | } |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | impl<R: for<'gc> Rootable<'gc>> Clone for DynamicRoot<R> { |
nothing calls this directly
no test coverage detected