early-errors-expression-formals-contains-await.js (545B)
1 // |reftest| error:SyntaxError 2 // Copyright 2017 the V8 project authors. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 author: Caitlin Potter <caitp@igalia.com> 7 esid: sec-identifiers-static-semantics-early-errors 8 description: > 9 `await` is a reserved keyword within async generator function bodies and may 10 not be used as the binding identifier of a parameter. 11 negative: 12 phase: parse 13 type: SyntaxError 14 features: [async-iteration] 15 ---*/ 16 17 $DONOTEVALUATE(); 18 19 (async function*(await) { });