Set the old line number.
(mut self, line_num: usize)
| 505 | |
| 506 | /// Set the old line number. |
| 507 | pub fn with_old_line_num(mut self, line_num: usize) -> Self { |
| 508 | self.old_line_num = Some(line_num); |
| 509 | self |
| 510 | } |
| 511 | |
| 512 | /// Set the new line number. |
| 513 | pub fn with_new_line_num(mut self, line_num: usize) -> Self { |
no outgoing calls
no test coverage detected