syntax-declaration.js (364B)
1 // |reftest| async 2 // Copyright 2016 Microsoft, Inc. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 author: Brian Terlson <brian.terlson@microsoft.com> 7 esid: pending 8 description: Async function declaration returns a promise 9 flags: [async] 10 ---*/ 11 12 async function foo () { } 13 14 foo().then(function() { 15 $DONE(); 16 })