Skip to main content

argyph_graph/
selector.rs

1use argyph_parse::SymbolId;
2use camino::Utf8PathBuf;
3
4#[derive(Debug, Clone, PartialEq, Eq, Hash)]
5pub enum SymbolSelector {
6    ById(SymbolId),
7    ByName { file: Utf8PathBuf, name: String },
8    Qualified(String),
9}