compare_properties comment.

This commit is contained in:
Tom Alexander 2023-10-09 22:36:15 -04:00
parent 4c89d6c813
commit 926682d513
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -1484,24 +1484,34 @@ fn compare_footnote_definition<'b, 's>(
}
fn compare_comment<'b, 's>(
_source: &'s str,
source: &'s str,
emacs: &'b Token<'s>,
rust: &'b Comment<'s>,
) -> Result<DiffEntry<'b, 's>, Box<dyn std::error::Error>> {
let child_status = Vec::new();
let mut this_status = DiffStatus::Good;
let mut child_status = Vec::new();
let mut message = None;
// Compare value
let value =
get_property_quoted_string(emacs, ":value")?.ok_or("Comments should have a value.")?;
let rust_value = rust.get_value();
if value != rust_value {
this_status = DiffStatus::Bad;
message = Some(format!(
"Value mismatch (emacs != rust) {:?} != {:?}",
value, rust_value
));
assert_no_children(emacs, &mut this_status, &mut message)?;
for diff in compare_properties!(
source,
emacs,
rust,
(
EmacsField::Required(":value"),
|r| Some(r.get_value()),
compare_property_quoted_string
)
) {
match diff {
ComparePropertiesResult::NoChange => {}
ComparePropertiesResult::SelfChange(new_status, new_message) => {
this_status = new_status;
message = new_message
}
ComparePropertiesResult::DiffEntry(diff_entry) => child_status.push(diff_entry),
}
}
Ok(DiffResult {