Initial structure for adding support for comments.

This commit is contained in:
Tom Alexander
2023-04-15 16:31:38 -04:00
parent cfcf6443ca
commit 1b10b197f2
5 changed files with 19 additions and 1 deletions

View File

@@ -5,3 +5,8 @@ pub struct Paragraph<'s> {
pub source: &'s str,
pub children: Vec<Object<'s>>,
}
#[derive(Debug)]
pub struct Comment<'s> {
pub source: &'s str,
}