swc/crates/swc_babel_visit
2021-11-10 16:39:01 +09:00
..
src refactor: Flatten crates (#2697) 2021-11-09 20:42:49 +09:00
Cargo.toml refactor: Flatten more packages (#2706) 2021-11-10 16:39:01 +09:00
README.md refactor: Flatten crates (#2697) 2021-11-09 20:42:49 +09:00

Visitor pattern implementation for Babel AST.

Example

// Visit all Identifier nodes in the Babel AST and change the optional field to 
// Some(true) for each of them.

use swc_babel_visit::{VisitMut, VisitMutWith};
use swc_babel_ast::{Identifier, File};

struct Visitor;

impl VisitMut for Visitor {
    fn visit_mut_identifier(&mut self, node: &mut Identifier) {
        node.optional = Some(true);
    }
}

let ast: File = get_babel_ast();
let mut v = Visitor {};
ast.visit_mut_with(&mut v);