tor-browser

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

nameless-params-trailing-comma-single.js (1082B)


      1 // |reftest| async
      2 // This file was procedurally generated from the following sources:
      3 // - src/function-forms/params-trailing-comma-single.case
      4 // - src/function-forms/default/async-func-expr-nameless.template
      5 /*---
      6 description: A trailing comma should not increase the respective length, using a single parameter (async function nameless expression)
      7 esid: sec-async-function-definitions
      8 features: [async-functions]
      9 flags: [generated, async]
     10 info: |
     11    14.6 Async Function Definitions
     12 
     13    AsyncFunctionExpression :
     14      async function ( FormalParameters ) { AsyncFunctionBody }
     15 
     16 
     17    Trailing comma in the parameters list
     18 
     19    14.1 Function Definitions
     20 
     21    FormalParameters[Yield, Await] : FormalParameterList[?Yield, ?Await] ,
     22 ---*/
     23 
     24 
     25 var callCount = 0;
     26 
     27 // Stores a reference `ref` for case evaluation
     28 var ref;
     29 ref = async function(a,) {
     30  assert.sameValue(a, 42);
     31  callCount = callCount + 1;
     32 };
     33 
     34 ref(42, 39).then(() => {
     35    assert.sameValue(callCount, 1, 'function invoked exactly once');
     36 }).then($DONE, $DONE);
     37 
     38 assert.sameValue(ref.length, 1, 'length is properly set');