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

Required Methods

Implementations on Foreign Types

Implementors