1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Generic [`Getter`](crate::Getter) collection definitions and implementations.

pub mod collection;
pub use collection::GetterCollection;

pub mod doc_code;
pub use doc_code::DocCodeGetterCollector;

pub mod syntax_tree;
pub use syntax_tree::SyntaxTreeGetterCollector;

pub mod token_stream;
pub use token_stream::TokenStreamGetterCollector;