我使用以下示例来测试使用Babel和es2016
预设的尾调用递归:
'use strict';
try {
function r(n) {
if (n%5000===0)
console.log(`reached a depth of ${n}`);
r(n+1);
}
r(0);
} catch (e) {
if (!(e instanceof RangeError))
throw e;
else
console.log('stack blown');
}
我的package.json
文件是:
{
"name": "tail-call-optimization",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel es6 --out-dir es5 --source-maps",
"watch": "babel es6 --out-dir es5 --source-maps --watch",
"start": "node es5/app.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2016": "^6.0.10",
"babel-runtime": "^6.6.1"
},
"dependencies": {
"babel-polyfill": "^6.7.4",
"source-map-support": "^0.4.0"
}
}
...而.babelrc
只是:
{
"presets": ["es2016"]
}
运行上述内容:
npm run build && npm run start
...导致以下控制台输出:
reached a depth of 0
reached a depth of 5000
reached a depth of 10000
reached a depth of 15000
stack blown
实际上,查看es5
目录中已编译的文件,没有任何迹象表明已经实施了TCO。
我错过了什么吗?
我的节点版本为4.3.2
。
答案 0 :(得分:5)
观察:https://babeljs.io/docs/learn-es2015/一个人读到:
暂时删除Babel 6
由于全局支持尾调用的复杂性和性能影响,仅支持显式自引用尾递归。由于其他错误而被删除,并将重新实施。
所以我猜它目前尚未实施。
答案 1 :(得分:0)
目前没有任何“官方”Babel 6插件/预设实现TCO。 babel-preset-es2016
不是“官方”预设。除非TCO依赖于Babylon中的解析器支持(我不会这么认为,但我不确定)然后我想用户插件/预设可以实现它,也许可以(但不是我知道)的)。以下是跟踪最终“官方”重新实施的问题:T2614。如果有人想要公关链接到学习ES2015文档@Marcus提到ping我在这里,我将合并它。