tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

early-errors-expression-yield-star-after-newline.js (476B)


      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-generator-function-definitions
      8 description: >
      9  A newline may not precede the `*` token in a `yield` expression.
     10 negative:
     11  phase: parse
     12  type: SyntaxError
     13 features: [async-iteration]
     14 ---*/
     15 
     16 $DONOTEVALUATE();
     17 
     18 (async function*() {
     19  yield
     20  * 1;
     21 });