pub trait AfterParseContext: Context {
    fn document(&self) -> AtomicRef<'_, DocumentV1> { ... }
fn document_mut(&self) -> AtomicRefMut<'_, DocumentV1> { ... }
fn diagnostics(&self) -> AtomicRef<'_, Diagnostics> { ... }
fn diagnostics_mut(&self) -> AtomicRefMut<'_, Diagnostics> { ... } }
Expand description

Context passed to the Hooks::after_parse() method.

Provided methods

Implementors