tor-browser

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

params-trailing-comma-single.js (1072B)


      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-decl.template
      5 /*---
      6 description: A trailing comma should not increase the respective length, using a single parameter (async function declaration)
      7 esid: sec-async-function-definitions
      8 features: [async-functions]
      9 flags: [generated, async]
     10 info: |
     11    14.6 Async Function Definitions
     12 
     13    AsyncFunctionDeclaration :
     14      async function BindingIdentifier ( 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 async function ref(a,) {
     29  assert.sameValue(a, 42);
     30  callCount = callCount + 1;
     31 }
     32 
     33 ref(42, 39).then(() => {
     34    assert.sameValue(callCount, 1, 'function invoked exactly once');
     35 }).then($DONE, $DONE);
     36 
     37 assert.sameValue(ref.length, 1, 'length is properly set');