blob: 6603704cdfdb55e1cfde82ac76ec6977ca784073 [file] [log] [blame] [edit]
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/expressions/async-function/
name: Unnamed async function expression
esid: prod-AsyncFunctionExpression
info: |
Async Function Definitions
AsyncFunctionExpression :
async [no LineTerminator here] function ( FormalParameters ) { AsyncFunctionBody }
features: [async-functions]
---*/
var asyncFn = async function (/*{ params }*/) {
/*{ body }*/
};