[fine] Starting to bind

This commit is contained in:
John Doty 2024-01-06 11:00:40 -08:00
parent 56e4be9a5b
commit 3d4538c0df
2 changed files with 137 additions and 3 deletions

View file

@ -138,7 +138,7 @@ pub enum TreeKind {
pub struct Tree<'a> {
pub kind: TreeKind,
pub parent: Option<TreeRef>,
pub parent: Option<TreeRef>, // TODO: Do we actually need this?
pub start_pos: usize,
pub end_pos: usize,
pub children: Vec<Child<'a>>,