tor-browser

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

executor-function-name.js (1131B)


      1 // Copyright (C) 2015 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-getcapabilitiesexecutor-functions
      6 description: The `name` property of GetCapabilitiesExecutor functions
      7 info: |
      8  A GetCapabilitiesExecutor function is an anonymous built-in function.
      9 
     10  17 ECMAScript Standard Built-in Objects:
     11    Every built-in function object, including constructors, has a `name`
     12    property whose value is a String. Functions that are identified as
     13    anonymous functions use the empty string as the value of the `name`
     14    property.
     15    Unless otherwise specified, the `name` property of a built-in function
     16    object has the attributes { [[Writable]]: *false*, [[Enumerable]]: *false*,
     17    [[Configurable]]: *true* }.
     18 includes: [propertyHelper.js]
     19 ---*/
     20 
     21 var executorFunction;
     22 
     23 function NotPromise(executor) {
     24  executorFunction = executor;
     25  executor(function() {}, function() {});
     26 }
     27 Promise.resolve.call(NotPromise);
     28 
     29 verifyProperty(executorFunction, "name", {
     30  value: "", writable: false, enumerable: false, configurable: true
     31 });
     32 
     33 reportCompare(0, 0);