Этот перевод не завершён. Пожалуйста, помогите перевести эту статью с английского
GeneratorFunction constructor создает новый generator function объект. В JavaScript каждая функция-генератор - это фактически GeneratorFunction объект.
Обратите внимание, что GeneratorFunction - это не глобальный объект. Он может быть получен при выполнении следующего кода.
Object.getPrototypeOf(function*(){}).constructor
Синтаксис
new GeneratorFunction ([arg1[, arg2[, ...argN]],] functionBody)
Параметры
arg1, arg2, ... argN- Имена, используемые функцией как имена формальных аргументов. Каждый должен быть строкой, которая соответствует правильному JavaScript идентификатору или списком таких строк, разделенных запятыми; например "
x", "theValue", или "a,b". functionBody- A string containing the JavaScript statements comprising the function definition.
Description
generator function objects created with the GeneratorFunction constructor are parsed when the function is created. This is less efficient than declaring a generator function with a function* expression and calling it within your code, because such functions are parsed with the rest of the code.
All arguments passed to the function are treated as the names of the identifiers of the parameters in the function to be created, in the order in which they are passed.
Note: generator function created with the GeneratorFunction constructor do not create closures to their creation contexts; they always are created in the global scope. When running them, they will only be able to access their own local variables and global ones, not the ones from the scope in which the GeneratorFunction constructor was called. This is different from using eval with code for a generator function expression.
Invoking the GeneratorFunction constructor as a function (without using the new operator) has the same effect as invoking it as a constructor.
Properties
GeneratorFunction.length- The
GeneratorFunctionconstructor's length property whose value is 1. GeneratorFunction.prototype- Allows the addition of properties to all generator function objects.
GeneratorFunction prototype object
Properties
GeneratorFunction instances
GeneratorFunction instances inherit methods and properties from GeneratorFunction.prototype. As with all constructors, you can change the constructor's prototype object to make changes to all GeneratorFunction instances.
Examples
Creating a generator function from a GeneratorFunction constructor
var GeneratorFunction = Object.getPrototypeOf(function*(){}).constructor
var g = new GeneratorFunction('a', 'yield a * 2');
var iterator = g(10);
console.log(iterator.next().value); // 20
Specifications
| Specification | Status | Comment |
|---|---|---|
| ECMAScript 2015 (6th Edition, ECMA-262) Определение 'GeneratorFunction' в этой спецификации. |
Стандарт | Initial definition. |
| ECMAScript (ECMA-262) Определение 'GeneratorFunction' в этой спецификации. |
Живой стандарт |
Browser compatibility
| Компьютеры | Мобильные | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
GeneratorFunction | Chrome Полная поддержка 39 | Edge Полная поддержка 13 | Firefox Полная поддержка 26 | IE Нет поддержки Нет | Opera Полная поддержка 26 | Safari Полная поддержка 10 | WebView Android Полная поддержка 39 | Chrome Android Полная поддержка 39 | Firefox Android Полная поддержка 26 | Opera Android Полная поддержка 26 | Safari iOS Полная поддержка 10 | Samsung Internet Android Полная поддержка 4.0 | nodejs Полная поддержка Да |
Легенда
- Полная поддержка
- Полная поддержка
- Нет поддержки
- Нет поддержки