我有以下设置:
<!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
个关键字。
DEMO
在Traceur Wiki上声明您应手动启用实验性功能(不确定这是否适用于运行时变体)。
所以问题是,是否可以为运行时启用实验性功能?