use std::fmt::Debug;
use crate::input::Selection;
#[derive(Debug, PartialEq, Clone)]
pub(super) struct Change {
pub(crate) old_range: Selection,
pub(crate) old_text: String,
pub(crate) new_range: Selection,
pub(crate) new_text: String,
pub(crate) selection_before: Selection,
pub(crate) selection_after: Selection,
}
impl Change {
pub(super) fn new(
old_range: impl Into<Selection>,
old_text: &str,
new_range: impl Into<Selection>,
new_text: &str,
selection_before: Selection,
selection_after: Selection,
) -> Self {
Self {
old_range: old_range.into(),
old_text: old_text.to_string(),
new_range: new_range.into(),
new_text: new_text.to_string(),
selection_before,
selection_after,
}
}
}