根据compatibility table,Firefox 54支持async / await,但在下面的代码中,异步函数永远不会执行,即使它甚至不等待任何事情。兼容性表是错误的还是代码中有错误?
<html>
<body>
<script type="module">
function helloSync()
{
alert("sync: This alert always happens");
}
async function helloAsync()
{
alert("async: This alert never happens");
}
helloSync();
helloAsync();
</script>
</body>
</html>