tor-browser

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

arrowparameters-cover-lineterminator-concisebody-assignmentexpression.js (573B)


      1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 es6id: 14.2
      5 description: >
      6    ArrowFunction[In, Yield] :
      7      ArrowParameters[?Yield] [no LineTerminator here] => ConciseBody[?In]
      8 
      9    LineTerminator not present
     10    ArrowParameters : CoverParenthesizedExpressionAndArrowParameterList[?Yield]
     11    ConciseBody[In] : [lookahead ≠ { ] AssignmentExpression[?In]
     12 ---*/
     13 var af = (x) =>
     14 x;
     15 
     16 assert.sameValue(typeof af, "function");
     17 assert.sameValue(af(1), 1);
     18 
     19 reportCompare(0, 0);