Update intermediate phase for table groups.

This commit is contained in:
Tom Alexander
2023-12-22 17:11:52 -05:00
parent 7741e192f5
commit fa2dd96f78
3 changed files with 37 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
use super::ITableRow;
#[derive(Debug, Clone)]
pub(crate) enum ITableGroup {
Head(Vec<ITableRow>),
Body(Vec<ITableRow>),
}