| // 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/named- |
| name: Named async function expression |
| esid: prod-AsyncFunctionExpression |
| info: | |
| Async Function Definitions |
| |
| AsyncFunctionExpression : |
| async [no LineTerminator here] function BindingIdentifier ( FormalParameters ) { AsyncFunctionBody } |
| features: [async-functions] |
| ---*/ |
| |
| var asyncFn = async function asyncFn(/*{ params }*/) { |
| /*{ body }*/ |
| }; |