diff options
Diffstat (limited to 'js/src/tests/test262/language/statements/async-function/evaluation-body.js')
-rw-r--r-- | js/src/tests/test262/language/statements/async-function/evaluation-body.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/async-function/evaluation-body.js b/js/src/tests/test262/language/statements/async-function/evaluation-body.js new file mode 100644 index 0000000000..80935ed9b6 --- /dev/null +++ b/js/src/tests/test262/language/statements/async-function/evaluation-body.js @@ -0,0 +1,20 @@ +// 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); |