(&mut self, rope: Rope)
| 109 | } |
| 110 | |
| 111 | fn commit(&mut self, rope: Rope) { |
| 112 | self.content = rope; |
| 113 | self.sender.send(FileCall::RopeChange(self.content.clone())).unwrap(); |
| 114 | } |
| 115 | |
| 116 | #[instrument] |
| 117 | fn get_highlights(&self) -> Vec<(Highlight, Line, Col)> { |
no test coverage detected