tor-browser

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

name.js (1035B)


      1 // Copyright (C) 2018 Valerie Young. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 esid: sec-properties-of-asyncgeneratorfunction
      5 description: Function "name" property
      6 info: |
      7  The value of the name property of the AsyncGeneratorFunction
      8  is "AsyncGeneratorFunction".
      9 
     10  17 ECMAScript Standard Built-in Objects:
     11  Every built-in Function object, including constructors, that is not
     12  identified as an anonymous function has a name property whose value is a
     13  String.
     14 
     15  Unless otherwise specified, the name property of a built-in Function object,
     16  if it exists, has the attributes { [[Writable]]: false, [[Enumerable]]:
     17  false, [[Configurable]]: true }.
     18 includes: [propertyHelper.js]
     19 features: [async-iteration]
     20 ---*/
     21 
     22 var AsyncGeneratorFunction = Object.getPrototypeOf(async function* () {}).constructor;
     23 
     24 verifyProperty(AsyncGeneratorFunction, "name", {
     25  value: "AsyncGeneratorFunction",
     26  enumerable: false,
     27  writable: false,
     28  configurable: true,
     29 });
     30 
     31 reportCompare(0, 0);