syntax-expression-is-PrimaryExpression.js (332B)
1 // Copyright 2016 Microsoft, Inc. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 author: Brian Terlson <brian.terlson@microsoft.com> 6 esid: pending 7 description: > 8 Async function expressions are PrimaryExpressions 9 ---*/ 10 11 (async function foo() { }.prototype) 12 13 reportCompare(0, 0);