tor-browser

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

lgcl-and-non-simple.js (524B)


      1 // |reftest| error:SyntaxError
      2 // Copyright (C) 2020 Rick Waldron. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 esid: sec-assignment-operators-static-semantics-early-errors
      7 info: |
      8    It is an early Syntax Error if AssignmentTargetType of
      9    LeftHandSideExpression is invalid or strict.
     10 description: Logical "&&=" assignment with non-simple target
     11 negative:
     12  phase: parse
     13  type: SyntaxError
     14 features: [logical-assignment-operators]
     15 ---*/
     16 $DONOTEVALUATE();
     17 
     18 1 &&= 1;