Initial structure for tables.

This commit is contained in:
Tom Alexander
2023-04-19 20:59:58 -04:00
parent 1badd3b0fc
commit 17ab8727d1
5 changed files with 54 additions and 0 deletions

8
src/parser/table.rs Normal file
View File

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