swc_ecma_compiler 0.1.0

Compatibility layer for the ECMAScript standard
Documentation
1
2
3
4
5
6
7
8
use swc_ecma_ast::Pass;

#[derive(Debug)]
pub struct Compiler {}

impl Pass for Compiler {
    fn process(&mut self, _program: &mut swc_ecma_ast::Program) {}
}