Trait SymbolQuery

Source
pub trait SymbolQuery {
    // Required methods
    fn get_call(&self, code: &str, node: &Node<'_>) -> Option<CodeNode>;
    fn get_lang(&self) -> Language;
    fn get_definition(&self, code: &str, node: &Node<'_>) -> Option<CodeNode>;
}

Required Methods§

Source

fn get_call(&self, code: &str, node: &Node<'_>) -> Option<CodeNode>

Source

fn get_lang(&self) -> Language

Source

fn get_definition(&self, code: &str, node: &Node<'_>) -> Option<CodeNode>

Implementors§