Compare table formulas.

This commit is contained in:
Tom Alexander
2023-09-08 23:05:04 -04:00
parent 84d2babda9
commit 80f7098f9b
3 changed files with 42 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
use super::element::Element;
use super::lesser_element::TableCell;
use super::Keyword;
use super::Object;
use super::Source;
@@ -63,6 +64,7 @@ pub struct NodeProperty<'s> {
#[derive(Debug)]
pub struct Table<'s> {
pub source: &'s str,
pub formulas: Vec<Keyword<'s>>,
pub children: Vec<TableRow<'s>>,
}