Initial code structure for property drawers.

This commit is contained in:
Tom Alexander
2023-04-19 16:51:00 -04:00
parent fcf1ba4ea6
commit a267f23e0f
5 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
use super::Context;
use crate::parser::error::Res;
use crate::parser::greater_element::PropertyDrawer;
#[tracing::instrument(ret, level = "debug")]
pub fn property_drawer<'r, 's>(
context: Context<'r, 's>,
input: &'s str,
) -> Res<&'s str, PropertyDrawer<'s>> {
todo!()
}