我有以下设置:
<!DOCTYPE html>
<html>
<head>
<script src="https://google.github.io/traceur-compiler/bin/traceur.js"></script>
<script src="https://google.github.io/traceur-compiler/src/bootstrap.js"></script>
这很好用,但是当我尝试实验性功能时它会中断。我试过async
-await
async makeItSo(input) {
await timeout(1000);
...
}
这给出了以下错误:
Uncaught SyntaxError: Unexpected identifier
它强调了async
关键字。
演示
在Traceur Wiki上,声明您应该手动启用实验功能(不确定这是否适用于运行时变体)。
所以问题是,可以为运行时启用实验性功能吗?