(&mut self)
| 92 | } |
| 93 | |
| 94 | fn pop(&mut self) { |
| 95 | let (marks, last_index) = self.marks_stack.pop().unwrap(); |
| 96 | self.marks = marks; |
| 97 | self.last_index = last_index; |
| 98 | } |
| 99 | |
| 100 | fn pop_keep(&mut self) { |
| 101 | let (marks, last_index) = self.marks_stack.last().unwrap().clone(); |
no test coverage detected