1//! AST edge: parent → child link with the shared AST marker and child index. 2 3use crate::Ast; 4 5#[derive(Clone, Copy, PartialEq, Eq, Debug)] 6pub struct AstEdge { 7 pub kind: Ast, 8 pub index: u32, 9}