1 2 3 4 5 6 7 8 9 10
use syn::Path; use crate::NodeTypeMap; /// General arguments to both node and query printers. #[derive(Clone, Copy)] pub struct PrintCtx<'a> { pub all_types: &'a NodeTypeMap, pub tree_sitter: &'a Path, pub type_sitter_lib: &'a Path }