目录
当前位置: 首页 > 文档资料 > Babel 中文文档 >

@babel/traverse

优质
小牛编辑
121浏览
2023-12-01

Install

$ npm install --save @babel/traverse

Usage

We can use it alongside the babel parser to traverse and update nodes:

import * as parser from "@babel/parser";
import traverse from "@babel/traverse";

const code = `function square(n) {
  return n * n;
}`;

const ast = parser.parse(code);

traverse(ast, {
  enter(path) {
    if (path.isIdentifier({ name: "n" })) {
      path.node.name = "x";
    }
  }
});

Also, we can target particular node types in the Syntax Tree

traverse(ast, {
    FunctionDeclaration: function(path) {
             path.node.id.name = "x";
    }
})

:book: Read the full docs here