我无法透露这段代码:
class FooBar extends SomeParent {
constructor() {
super();
}
start() {
var foo = function() {
super.start(); // <-- Error: 'super' outside of function or class
};
}
}
引发的错误是'super' outside of function or class
。
但是,相同的代码在Babel REPL中转换得很好。
我正在使用此命令使用自定义Node.JS程序进行转换:
babel.transformFileSync(filename, { presets: [ 'es2015' ] } );
安装信息:
$ npm ls --global --depth 0
/usr/lib
├── babel@6.3.13
├── babel-core@6.3.17
├── babel-plugin-external-helpers-2@6.3.13
├── babel-plugin-syntax-async-functions@6.3.13
├── babel-plugin-transform-async-to-generator@6.3.13
├── babel-plugin-transform-regenerator@6.3.18
├── babel-plugin-transform-runtime@6.3.13
├── babel-polyfill@6.3.14
├── babel-preset-es2015@6.3.13
└── npm@1.4.28
$ node -v
v0.10.40
我做错了什么?使用Babel 5进行转换时没有问题...
答案 0 :(得分:9)
它适用于Babel REPL,因为Babel 5没有对此进行检查。
这是无效的:
class Example extends Parent {
start() {
var foo = function() {
super.start();
};
}
}
但是使用箭头功能可以:
class Example extends Parent {
start() {
var foo = () => {
super.start();
};
}
}
因为super
行为基于其调用位置的this
环境。虽然箭头函数与其父级共享其this
环境,但标准函数引入整个非this
环境。
具体做法是: