pub trait Node: Spanned {
    fn emit_with<W>(&self, e: &mut Emitter<'_, W>) -> Result
    where
        W: WriteJs
; }

Required methods

Implementations on Foreign Types

Implementors