tor-browser

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

setter-use-strict-with-non-simple-param.js (648B)


      1 // |reftest| error:SyntaxError
      2 // Copyright (C) 2015 André Bargull. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 esid: sec-method-definitions-static-semantics-early-errors
      7 description: >
      8  A SyntaxError is thrown if a setter method contains a non-simple parameter list and a UseStrict directive.
      9 info: |
     10  Static Semantics: Early Errors
     11 
     12  It is a Syntax Error if ContainsUseStrict of FunctionBody is true and IsSimpleParameterList of PropertySetParameterList is false.
     13 negative:
     14  phase: parse
     15  type: SyntaxError
     16 ---*/
     17 
     18 $DONOTEVALUATE();
     19 
     20 var o = {
     21  set m(a = 0) {
     22    "use strict";
     23  }
     24 };