pub trait AstDatabase: Database + HasQueryGroup<AstStorage> + InputDatabase {
    fn ast(&self) -> SyntaxTree;
    fn document(&self) -> GreenNode;
    fn syntax_errors(&self) -> Vec<ApolloDiagnostic>;
}

Required Methods§

Implementors§