pub fn diff_lines(old: &str, new: &str) -> Vec<DiffLine>
Computes a line-level diff of old against new using a longest-common- subsequence, returning the merged sequence of equal, inserted, and deleted lines in order.
old
new