尝试运行这些新功能,如http://h3manth.com/new/blog/2013/es6-on-nodejs/所示,特别是我本地节点环境中的生成器。当我node --harmony --use-strict es6.js
在 0.11.4 之前的任何 Node 版本上运行时,任何原因都会出现错误
function *Counter() {
^
SyntaxError: Unexpected token *
etc...
它适用于任何版本 0.11.4 及更高版本,但是当--debug-brk
在那里添加语句时,我得到
global.v8debug.Debug.setBreakPoint(compiledWrapper, 0, 0);
^
ReferenceError: break_point is not defined
不知道为什么它给了我启用和谐的选项,但在以前的版本中没有使用它,为什么我不能调试更高版本?