Source code
Revision control
Copy as Markdown
Other Tools
// copyright 2016 microsoft, inc. all rights reserved.
// this code is governed by the bsd license found in the license file.
/*---
author: brian terlson <brian.terlson@microsoft.com>
esid: pending
description: >
async function bodies are executed immediately (unlike generators)
---*/
let called;
async function foo() {
called = true;
await new Promise();
}
foo();
assert(called);
reportCompare(0, 0);