使用 AST 实现 babel 插件编写

使用 AST 实现 babel 插件编写

1. AST介绍

webpackLint 等很多库是通过 AST 抽象语法树来实现的。

抽象语法树 (Abstract Syntax Tree) 是源代码语法结构的⼀种抽象表示,以树状描述编程语⾔的语法结构,每个节点表示源代码中的⼀种结构。AST常用于代码语法检查、⻛格检查、格式化、代码提示、混淆压缩、自动补全等,还可以用来优化代码结构,如 webpack 以及 CommonJS、AMD、CMD、UMD等代码规范之间的转化等。

对浏览器来说,每个js引擎都会有自己的抽象语法树格式,如 Chrome 的 v8 引擎,firefox 的 SpiderMonkey 引擎等,MDN提供了详细的 SpiderMonkey AST format 说明,算得上是业界标准。浏览器通过把 js 源码解析器转为抽象语法树,方便进一步转化为字节码或直接生成机器码。

js 代码可以使用 JavaScript Parser 解析器来处理,常见的 Parser 有:esprimatraceuracornshift,可以在下面这个可视化网站来体验下 js 解析器将代码转换为 AST:

https://astexplorer.net/

2. 使用 esprima 做 js 代码转换

目标:将下面代码转换成AST,将ast函数转换成新的函数newAst

function ast(){}

js代码的语法转换涉及到3个npm包:

  • esprima:JS词法、语法分析工具,支持转换代码为 AST
  • estraverse:AST遍历和更新工具
  • escodegen:AST重新生成源码

首先安装这3个包:

$ npm i esprima estraverse escodegen -S

在 astexplorer 中观察,只需要改动红框中的 name 为 newAst,并重新生成源码即可。

01.jpg

遍历 AST 和转换的代码如下:

const esprima = require('esprima');
const estraverse = require('estraverse');
const escodegen = require('escodegen');
let code = `function ast(){}`;
// 将代码转换成ast语法树
const ast = esprima.parseScript(code);
// 遍历
estraverse.traverse(ast, {
    enter(node) {
        console.log('enter:' + node.type)
        if (node.type === 'FunctionDeclaration') {
            node.id.name = 'newAst'
        }
    },
    leave(node) {
        console.log('leave:' + node.type)
    }
})
// 重新生成
console.log(escodegen.generate(ast))

estraverse 采用的是深度优先遍历,输出结果如下所示,遍历顺序为:Program -> FunctionDeclaration -> Identifier

enter:Program
enter:FunctionDeclaration
enter:Identifier
leave:Identifier
enter:BlockStatement
leave:BlockStatement
leave:FunctionDeclaration
leave:Program

3. 编写 babel 插件转换箭头函数

目标:将下面的 es6 箭头函数转换为 es5 的普通函数

const sum = (a, b) => a + b;

babel 中有两个常用的工具库:

  • @babel/core:Babel 编译器,包含了核⼼ API,如 transform、parse,同时实现了 plugins 插件功能
  • @babel/types:处理 AST 节点的函数式⼯具库,包含了构造、验证及变换 AST 节点的⽅法

3.1 先使用现成的箭头函数转换插件

先使用现成的 babel-plugin-transform-es2015-arrow-functions 箭头函数转换插件

const babel = require("@babel/core");
const arrowFunctions = require("babel-plugin-transform-es2015-arrow-functions");
const code = `const sum = (a, b) => a + b;`;
const result = babel.transform(code, {
  plugins: [arrowFunctions],
});
console.log(result.code);

转换后的代码为:

const sum = function (a, b) {
  return a + b;
};

而 AST 的结构变化如下:

02.jpg

3.2 编写插件转换箭头函数

接下来编写 transformFunction 插件实现上面的 babel-plugin-transform-es2015-arrow-functions 插件功能,需要依赖 @babel/types 对类型的判断和创建

const babel = require('@babel/core');
const types = require('@babel/types');
const transformFunction = {
  visitor: {
    // 访问者模式,遇到箭头函数表达式后命中此⽅法,path 为访问路径,path->node
    ArrowFunctionExpression(path) {
      let { node } = path;
      node.type = 'FunctionExpression';
      // 处理 this 问题,后面详解
      hoistFunctionEvn(path);
      let body = node.body; // 老节点中的 a+b;
      // 如果不是代码块,则增加代码块及return语句
      if (!types.isBlockStatement(body)) {
        node.body = types.blockStatement([types.returnStatement(body)]);
      }
    }
  }
}
// js代码
const code = `const sum = () => console.log(this)`;
const result = babel.transform(code, {
  plugins: [transformFunction],
});
console.log(result.code);

解决了类型转换,还需要解决箭头函数中的 this 问题,转换后的代码如下:

// 转换前
const sum = (a, b) => console.log(this);

// 转换后
var _this = this;
const sum = function (a, b) {
  return console.log(_this);
};

插件需要找到上级作⽤域并增加 this 的声明语句:

function hoistFunctionEvn(path) {
  // 查找父作用域
  const thisEnv = path.findParent((parent) => (parent.isFunction() && !parent.isArrowFunctionExpression()) || parent.isProgram());
  // 遍历获取⼦路径中的 thisExpression
  const thisPaths = [];
  path.traverse({
    ThisExpression(path) {
      thisPaths.push(path);
    }
  });
  // 修改当前 path 中的 this 为 _this
  thisPaths.forEach(path => {
    path.replaceWith(types.identifier('_this')); // this -> _this
  });
  // 在父作⽤域下增加 var _this = this;
  thisEnv.scope.push({
    id: types.identifier('_this'),
    init: types.thisExpression(),
  })
}

4. 编写 babel 插件转换 class 为 Function

目标:将下面的 es6 的 class 类代码转换为 es5 的 Function

// 转换前
class Person {
  constructor(name) {
    this.name = name;
  }
  getName() {
    return this.name;
  }
  setName(newName) {
    this.name = newName;
  }
}

// 转换后
function Person(name) {
  this.name = name;
}
Person.prototype.getName = function () {
  return this.name;
};
Person.prototype.setName = function () {
  this.name = newName;
};

AST 的结构变化如下,需要将 class 中的 methods 并转换为赋值表达式

03.jpg

插件代码如下:

const arrowFunctions = {
  visitor: {
    ClassDeclaration(path) {
      const { node } = path;
      const { id } = node;
      // 获取 class 类中的⽅法并转换为赋值表达式
      const methods = node.body.body;
      const nodes = [];
      methods.forEach((method) = > {
        if (method.kind === "constructor") {
          let constructorFunction = types.functionDeclaration(id, method.params, method.body);
          nodes.push(constructorFunction);
        } else {
          // Person.prototype.getName
          const memberExpression = types.memberExpression(types.memberExpression(id, types.identifier("prototype")), method.key);
          // function(name){return name}
          const functionExpression = types.functionExpression(null, method.params, method.body);
          // 赋值
          const assignmentExpression = types.assignmentExpression("=", memberExpression, functionExpression);
          nodes.push(assignmentExpression);
        }
      });
      // 替换节点
      if (node.length === 1) {
        path.replaceWith(nodes[0]);
      } else {
        path.replaceWithMultiple(nodes);
      }
    },
  },
};

原文地址:https://cloud.tencent.com/developer/article/2063112

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


学习编程是顺着互联网的发展潮流,是一件好事。新手如何学习编程?其实不难,不过在学习编程之前你得先了解你的目的是什么?这个很重要,因为目的决定你的发展方向、决定你的发展速度。
IT行业是什么工作做什么?IT行业的工作有:产品策划类、页面设计类、前端与移动、开发与测试、营销推广类、数据运营类、运营维护类、游戏相关类等,根据不同的分类下面有细分了不同的岗位。
女生学Java好就业吗?女生适合学Java编程吗?目前有不少女生学习Java开发,但要结合自身的情况,先了解自己适不适合去学习Java,不要盲目的选择不适合自己的Java培训班进行学习。只要肯下功夫钻研,多看、多想、多练
Can’t connect to local MySQL server through socket \'/var/lib/mysql/mysql.sock问题 1.进入mysql路径
oracle基本命令 一、登录操作 1.管理员登录 # 管理员登录 sqlplus / as sysdba 2.普通用户登录
一、背景 因为项目中需要通北京网络,所以需要连vpn,但是服务器有时候会断掉,所以写个shell脚本每五分钟去判断是否连接,于是就有下面的shell脚本。
BETWEEN 操作符选取介于两个值之间的数据范围内的值。这些值可以是数值、文本或者日期。
假如你已经使用过苹果开发者中心上架app,你肯定知道在苹果开发者中心的web界面,无法直接提交ipa文件,而是需要使用第三方工具,将ipa文件上传到构建版本,开...
下面的 SQL 语句指定了两个别名,一个是 name 列的别名,一个是 country 列的别名。**提示:**如果列名称包含空格,要求使用双引号或方括号:
在使用H5混合开发的app打包后,需要将ipa文件上传到appstore进行发布,就需要去苹果开发者中心进行发布。​
+----+--------------+---------------------------+-------+---------+
数组的声明并不是声明一个个单独的变量,比如 number0、number1、...、number99,而是声明一个数组变量,比如 numbers,然后使用 nu...
第一步:到appuploader官网下载辅助工具和iCloud驱动,使用前面创建的AppID登录。
如需删除表中的列,请使用下面的语法(请注意,某些数据库系统不允许这种在数据库表中删除列的方式):
前不久在制作win11pe,制作了一版,1.26GB,太大了,不满意,想再裁剪下,发现这次dism mount正常,commit或discard巨慢,以前都很快...
赛门铁克各个版本概览:https://knowledge.broadcom.com/external/article?legacyId=tech163829
实测Python 3.6.6用pip 21.3.1,再高就报错了,Python 3.10.7用pip 22.3.1是可以的
Broadcom Corporation (博通公司,股票代号AVGO)是全球领先的有线和无线通信半导体公司。其产品实现向家庭、 办公室和移动环境以及在这些环境...
发现个问题,server2016上安装了c4d这些版本,低版本的正常显示窗格,但红色圈出的高版本c4d打开后不显示窗格,
TAT:https://cloud.tencent.com/document/product/1340