Push a scope handle onto the top of the stack. # Parameters - `handle`: Scope handle to make the new top-most active scope.
(&mut self, handle: ScopeHandle)
| 51 | /// # Parameters |
| 52 | /// - `handle`: Scope handle to make the new top-most active scope. |
| 53 | pub fn push(&mut self, handle: ScopeHandle) { |
| 54 | self.stack.push(handle); |
| 55 | } |
| 56 | |
| 57 | /// Return the current top-most scope handle. |
| 58 | /// |
no outgoing calls