diff --git a/org_mode_samples/object/inline_babel_call/simple.org b/org_mode_samples/object/inline_babel_call/simple.org index 4add233e..f98222a4 100644 --- a/org_mode_samples/object/inline_babel_call/simple.org +++ b/org_mode_samples/object/inline_babel_call/simple.org @@ -1,3 +1,4 @@ +call_foo() call_foo(arguments) call_bar[header](arguments) call_baz(arguments)[header] diff --git a/src/compare/diff.rs b/src/compare/diff.rs index 7eeb4d30..5cead57a 100644 --- a/src/compare/diff.rs +++ b/src/compare/diff.rs @@ -3592,20 +3592,61 @@ fn compare_citation_reference<'b, 's>( } fn compare_inline_babel_call<'b, 's>( - _source: &'s str, + source: &'s str, emacs: &'b Token<'s>, rust: &'b InlineBabelCall<'s>, ) -> Result, Box> { - let this_status = DiffStatus::Good; - let message = None; + let mut this_status = DiffStatus::Good; + let mut child_status = Vec::new(); + let mut message = None; - // TODO: Compare :call :inside-header :arguments :end-header :value + assert_no_children(emacs, &mut this_status, &mut message)?; + + for diff in compare_properties!( + source, + emacs, + rust, + ( + EmacsField::Required(":call"), + |r| Some(r.call), + compare_property_quoted_string + ), + ( + EmacsField::Required(":inside-header"), + |r| r.inside_header, + compare_property_quoted_string + ), + ( + EmacsField::Required(":arguments"), + |r| r.arguments, + compare_property_quoted_string + ), + ( + EmacsField::Required(":end-header"), + |r| r.end_header, + compare_property_quoted_string + ), + ( + EmacsField::Required(":value"), + |r| Some(r.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 { status: this_status, name: rust.get_elisp_name(), message, - children: Vec::new(), + children: child_status, rust_source: rust.get_source(), emacs_token: emacs, } diff --git a/src/parser/inline_babel_call.rs b/src/parser/inline_babel_call.rs index 41abea64..001333f2 100644 --- a/src/parser/inline_babel_call.rs +++ b/src/parser/inline_babel_call.rs @@ -34,10 +34,11 @@ pub(crate) fn inline_babel_call<'b, 'g, 'r, 's>( input: OrgSource<'s>, ) -> Res, InlineBabelCall<'s>> { let (remaining, _) = tag_no_case("call_")(input)?; - let (remaining, _name) = name(context, remaining)?; - let (remaining, _header1) = opt(parser_with_context!(header)(context))(remaining)?; - let (remaining, _argument) = argument(context, remaining)?; - let (remaining, _header2) = opt(parser_with_context!(header)(context))(remaining)?; + let (remaining, name) = name(context, remaining)?; + let (remaining, inside_header) = opt(parser_with_context!(header)(context))(remaining)?; + let (remaining, arguments) = argument(context, remaining)?; + let (remaining, end_header) = opt(parser_with_context!(header)(context))(remaining)?; + let value = get_consumed(input, remaining); let (remaining, _trailing_whitespace) = maybe_consume_object_trailing_whitespace_if_not_exiting(context, remaining)?; let source = get_consumed(input, remaining); @@ -45,6 +46,15 @@ pub(crate) fn inline_babel_call<'b, 'g, 'r, 's>( remaining, InlineBabelCall { source: source.into(), + value: value.into(), + call: name.into(), + inside_header: inside_header.map(Into::<&str>::into), + arguments: if arguments.len() > 0 { + Some(arguments.into()) + } else { + None + }, + end_header: end_header.map(Into::<&str>::into), }, )) } diff --git a/src/types/object.rs b/src/types/object.rs index 9018b403..004abdfe 100644 --- a/src/types/object.rs +++ b/src/types/object.rs @@ -217,6 +217,11 @@ pub struct CitationReference<'s> { #[derive(Debug, PartialEq)] pub struct InlineBabelCall<'s> { pub source: &'s str, + pub value: &'s str, + pub call: &'s str, + pub inside_header: Option<&'s str>, + pub arguments: Option<&'s str>, + pub end_header: Option<&'s str>, } #[derive(Debug, PartialEq)]