Parse the babel call.

This commit is contained in:
Tom Alexander
2023-10-05 16:32:40 -04:00
parent 343af41f78
commit 68e392811e
8 changed files with 176 additions and 12 deletions

View File

@@ -139,6 +139,10 @@ pub struct BabelCall<'s> {
pub source: &'s str,
pub name: Option<&'s str>,
pub value: &'s str,
pub call: Option<&'s str>,
pub inside_header: Option<&'s str>,
pub arguments: Option<&'s str>,
pub end_header: Option<&'s str>,
}
#[derive(Debug)]