Returns the line content including deleted tokens (for history).
(&self)
| 156 | |
| 157 | /// Returns the line content including deleted tokens (for history). |
| 158 | pub fn full_content(&self) -> String { |
| 159 | self.tokens.iter().map(|t| t.content_str()).collect() |
| 160 | } |
| 161 | |
| 162 | /// Returns true if the line is alive (not deleted). |
| 163 | pub fn is_alive(&self) -> bool { |
nothing calls this directly
no test coverage detected