pub trait BuilderCache<L: Language>: ParseCache<L> { }Expand description
Cache trait for builder operations used by lexers and parsers.
This trait defines the interface for building green tree nodes incrementally. It provides methods for adding tokens and nodes to the tree structure.