pub fn emit<'a>(node: Node<'a>, output: &mut Vec<u8>)
Expand description
Emits UTF-8 JavaScript code from a parsed AST in a minified way. This allows custom introspections and transforms on the tree before emitting it to code.
ยงArguments
node
- The root node from the parsed AST.output
- Destination to write output JavaScript code.