yield
in generatorsyield*
next()
yield
binds looselyreturn()
and throw()
return()
terminates the generatorthrow()
signals an erroryield*
: the full storyIteratorPrototype
this
in generatorsyield
function*
for generators and not generator
?yield
a keyword?You can think of generators as processes (pieces of code) that you can pause and resume:
Note the new syntax: function*
is a new “keyword” for generator functions (there are also generator methods). yield
is an operator with which a generator can pause itself. Additionally, generators can also receive input and send output via yield
.
When you call a generator function genFunc()
, you get a generator object genObj
that you can use to control the process:
The process is initially paused in line A. genObj.next()
resumes execution, a yield
inside genFunc()
pauses execution:
There are four kinds of generators:
The objects returned by generators are iterable; each yield
contributes to the sequence of iterated values. Therefore, you can use generators to implement iterables, which can be consumed by various ES6 language mechanisms: for-of
loop, spread operator (...
), etc.
The following function returns an iterable over the properties of an object, one [key, value] pair per property:
objectEntries()
is used like this:
How exactly objectEntries()
works is explained in a dedicated section. Implementing the same functionality without generators is much more work.
You can use generators to tremendously simplify working with Promises. Let’s look at a Promise-based function fetchJson()
and how it can be improved via generators.
With the library co and a generator, this asynchronous code looks synchronous:
ECMAScript 2017 will have async functions which are internally based on generators. With them, the code looks like this:
All versions can be invoked like this:
Generators can receive input from next()
via yield
. That means that you can wake up a generator whenever new data arrives asynchronously and to the generator it feels like it receives the data synchronously.
Generators are functions that can be paused and resumed (think cooperative multitasking or coroutines), which enables a variety of applications.
As a first example, consider the following generator function whose name is genFunc
:
Two things distinguish genFunc
from a normal function declaration:
function*
.yield
(line B).Calling genFunc
does not execute its body. Instead, you get a so-called generator object, with which you can control the execution of the body:
genFunc()
is initially suspended before the body (line A). The method call genObj.next()
continues execution until the next yield
:
As you can see in the last line, genObj.next()
also returns an object. Let’s ignore that for now. It will matter later.
genFunc
is now paused in line B. If we call next()
again, execution resumes and line C is executed:
Afterwards, the function is finished, execution has left the body and further calls of genObj.next()
have no effect.
Generators can play three roles:
yield
can return a value via next()
, which means that generators can produce sequences of values via loops and recursion. Due to generator objects implementing the interface Iterable
(which is explained in the chapter on iteration), these sequences can be processed by any ECMAScript 6 construct that supports iterables. Two examples are: for-of
loops and the spread operator (...
).yield
can also receive a value from next()
(via a parameter). That means that generators become data consumers that pause until a new value is pushed into them via next()
.The next sections provide deeper explanations of these roles.
As explained before, generator objects can be data producers, data consumers or both. This section looks at them as data producers, where they implement both the interfaces Iterable
and Iterator
(shown below). That means that the result of a generator function is both an iterable and an iterator. The full interface of generator objects will be shown later.
I have omitted method return()
of interface Iterable
, because it is not relevant in this section.
A generator function produces a sequence of values via yield
, a data consumer consumes thoses values via the iterator method next()
. For example, the following generator function produces the values 'a'
and 'b'
:
This interaction shows how to retrieve the yielded values via the generator object genObj
:
As generator objects are iterable, ES6 language constructs that support iterables can be applied to them. The following three ones are especially important.
First, the for-of
loop:
Second, the spread operator (...
), which turns iterated sequences into elements of an array (consult the chapter on parameter handling for more information on this operator):
Third, destructuring:
The previous generator function did not contain an explicit return
. An implicit return
is equivalent to returning undefined
. Let’s examine a generator with an explicit return
:
The returned value shows up in the last object returned by next()
, whose property done
is true
:
However, most constructs that work with iterables ignore the value inside the done
object:
yield*
, an operator for making recursive generator calls, does consider values inside done
objects. It is explained later.
If an exception leaves the body of a generator then next()
throws it:
That means that next()
can produce three different “results”:
x
in an iteration sequence, it returns { value: x, done: false }
z
, it returns { value: z, done: true }
Let’s look at an example that demonstrates how convenient generators are for implementing iterables. The following function, objectEntries()
, returns an iterable over the properties of an object:
This function enables you to iterate over the properties of an object jane
via the for-of
loop:
For comparison – an implementation of objectEntries()
that doesn’t use generators is much more complicated:
yield
in generators A significant limitation of generators is that you can only yield while you are (statically) inside a generator function. That is, yielding in callbacks doesn’t work:
yield
is not allowed inside non-generator functions, which is why the previous code causes a syntax error. In this case, it is easy to rewrite the code so that it doesn’t use callbacks (as shown below). But unfortunately that isn’t always possible.
The upside of this limitation is explained later: it makes generators easier to implement and compatible with event loops.
yield*
You can only use yield
within a generator function. Therefore, if you want to implement a recursive algorithm with generator, you need a way to call one generator from another one. This section shows that that is more complicated than it sounds, which is why ES6 has a special operator, yield*
, for this. For now, I only explain how yield*
works if both generators produce output, I’ll later explain how things work if input is involved.
How can one generator recursively call another generator? Let’s assume you have written a generator function foo
:
How would you call foo
from another generator function bar
? The following approach does not work!
Calling foo()
returns an object, but does not actually execute foo()
. That’s why ECMAScript 6 has the operator yield*
for making recursive generator calls:
Internally, yield*
works roughly as follows:
The operand of yield*
does not have to be a generator object, it can be any iterable:
yield*
considers end-of-iteration values Most constructs that support iterables ignore the value included in the end-of-iteration object (whose property done
is true
). Generators provide that value via return
. The result of yield*
is the end-of-iteration value:
If we want to get to line A, we first must iterate over all values yielded by logReturned()
:
Iterating over a tree with recursion is simple, writing an iterator for a tree with traditional means is complicated. That’s why generators shine here: they let you implement an iterator via recursion. As an example, consider the following data structure for binary trees. It is iterable, because it has a method whose key is Symbol.iterator
. That method is a generator method and returns an iterator when called.
The following code creates a binary tree and iterates over it via for-of
:
As consumers of data, generator objects conform to the second half of the generator interface, Observer
:
As an observer, a generator pauses until it receives input. There are three kinds of input, transmitted via the methods specified by the interface:
next()
sends normal input.return()
terminates the generator.throw()
signals an error.next()
If you use a generator as an observer, you send values to it via next()
and it receives those values via yield
:
Let’s use this generator interactively. First, we create a generator object:
We now call genObj.next()
, which starts the generator. Execution continues until the first yield
, which is where the generator pauses. The result of next()
is the value yielded in line A (undefined
, because yield
doesn’t have an operand). In this section, we are not interested in what next()
returns, because we only use it to send values, not to retrieve values.
We call next()
two more times, in order to send the value 'a'
to the first yield
and the value 'b'
to the second yield
:
The result of the last next()
is the value returned from dataConsumer()
. done
being true
indicates that the generator is finished.
Unfortunately, next()
is asymmetric, but that can’t be helped: It always sends a value to the currently suspended yield
, but returns the operand of the following yield
.
next()
When using a generator as an observer, it is important to note that the only purpose of the first invocation of next()
is to start the observer. It is only ready for input afterwards, because this first invocation advances execution to the first yield
. Therefore, any input you send via the first next()
is ignored:
Initially, execution is paused in line A. The first invocation of next()
:
'a'
of next()
to the generator, which has no way to receive it (as there is no yield
). That’s why it is ignored.yield
in line B and pauses execution.yield
’s operand (undefined
, because it doesn’t have an operand).The second invocation of next()
:
'b'
of next()
to the generator, which receives it via the yield
in line B and assigns it to the variable input
.next()
returns with that yield
’s operand (undefined
).The following utility function fixes this issue:
To see how coroutine()
works, let’s compare a wrapped generator with a normal one:
The wrapped generator is immediately ready for input:
The normal generator needs an extra next()
until it is ready for input:
yield
binds loosely yield
binds very loosely, so that we don’t have to put its operand in parentheses:
This is treated as:
Not as:
As a consequence, many operators bind more tightly than yield
and you have to put yield
in parentheses if you want to use it as an operand. For example, you get a SyntaxError if you make an unparenthesized yield
an operand of plus:
You do not need parens if yield
is a direct argument in a function or method call:
You also don’t need parens if you use yield
on the right-hand side of an assignment:
yield
in the ES6 grammar The need for parens around yield
can be seen in the following grammar rules in the ECMAScript 6 specification. These rules describe how expressions are parsed. I list them here from general (loose binding, lower precedence) to specific (tight binding, higher precedence). Wherever a certain kind of expression is demanded, you can also use more specific ones. The opposite is not true. The hierarchy ends with ParenthesizedExpression
, which means that you can mention any expression anywhere, if you put it in parentheses.
The operands of an AdditiveExpression
are an AdditiveExpression
and a MultiplicativeExpression
. Therefore, using a (more specific) ParenthesizedExpression
as an operand is OK, but using a (more general) YieldExpression
isn’t.
return()
and throw()
Generator objects have two additional methods, return()
and throw()
, that are similar to next()
.
Let’s recap how next(x)
works (after the first invocation):
yield
operator.x
to that yield
, which means that it evaluates to x
.yield
, return
or throw
:
yield x
leads to next()
returning with { value: x, done: false }
return x
leads to next()
returning with { value: x, done: true }
throw err
(not caught inside the generator) leads to next()
throwing err
.return()
and throw()
work similarly to next()
, but they do something different in step 2:
return(x)
executes return x
at the location of yield
.throw(x)
executes throw x
at the location of yield
.return()
terminates the generator return()
performs a return
at the location of the yield
that led to the last suspension of the generator. Let’s use the following generator function to see how that works.
In the following interaction, we first use next()
to start the generator and to proceed until the yield
in line A. Then we return from that location via return()
.
You can prevent return()
from terminating the generator if you yield inside the finally
clause (using a return
statement in that clause is also possible):
This time, return()
does not exit the generator function. Accordingly, the property done
of the object it returns is false
.
You can invoke next()
one more time. Similarly to non-generator functions, the return value of the generator function is the value that was queued prior to entering the finally
clause.
Returning a value from a newborn generator (that hasn’t started yet) is allowed:
throw()
signals an error throw()
throws an exception at the location of the yield
that led to the last suspension of the generator. Let’s examine how that works via the following generator function.
In the following interaction, we first use next()
to start the generator and proceed until the yield
in line A. Then we throw an exception from that location.
The result of throw()
(shown in the last line) stems from us leaving the function with an implicit return
.
Throwing an exception in a newborn generator (that hasn’t started yet) is allowed:
The fact that generators-as-observers pause while they wait for input makes them perfect for on-demand processing of data that is received asynchronously. The pattern for setting up a chain of generators for processing is as follows:
target
. It receives data via yield
and sends data via target.next()
.target
and only receives data.The whole chain is prefixed by a non-generator function that makes an asynchronous request and pushes the results into the chain of generators via next()
.
As an example, let’s chain generators to process a file that is read asynchronously.
The following code sets up the chain: it contains the generators splitLines
, numberLines
and printLines
. Data is pushed into the chain via the non-generator function readFile
.
I’ll explain what these functions do when I show their code.
As previously explained, if generators receive input via yield
, the first invocation of next()
on the generator object doesn’t do anything. That’s why I use the previously shown helper function coroutine()
to create coroutines here. It executes the first next()
for us.
readFile()
is the non-generator function that starts everything:
The chain of generators starts with splitLines
:
Note an important pattern:
readFile
uses the generator object method return()
to signal the end of the sequence of chunks that it sends.readFile
sends that signal while splitLines
is waiting for input via yield
, inside an infinite loop. return()
breaks from that loop.splitLines
uses a finally
clause to handle the end-of-sequence.The next generator is numberLines
:
The last generator is printLines
:
The neat thing about this code is that everything happens lazily (on demand): lines are split, numbered and printed as they arrive; we don’t have to wait for all of the text before we can start printing.
yield*
: the full story As a rough rule of thumb, yield*
performs (the equivalent of) a function call from one generator (the caller) to another generator (the callee).
So far, we have only seen one aspect of yield
: it propagates yielded values from the callee to the caller. Now that we are interested in generators receiving input, another aspect becomes relevant: yield*
also forwards input received by the caller to the callee. In a way, the callee becomes the active generator and can be controlled via the caller’s generator object.
yield*
forwards next()
The following generator function caller()
invokes the generator function callee()
via yield*
.
callee
logs values received via next()
, which allows us to check whether it receives the value 'a'
and 'b'
that we send to caller
.
throw()
and return()
are forwarded in a similar manner.
yield*
expressed in JavaScript I’ll explain the complete semantics of yield*
by showing how you’d implemented it in JavaScript.
The following statement:
is roughly equivalent to:
To keep things simple, several things are missing in this code:
yield*
can be any iterable value.return()
and throw()
are optional iterator methods. We should only call them if they exist.throw()
does not exist, but return()
does then return()
is called (before throwing an exception) to give calleeObject
the opportunity to clean up.calleeObj
can refuse to close, by returning an object whose property done
is false
. Then the caller also has to refuse to close and yield*
must continue to iterate.We have seen generators being used as either sources or sinks of data. For many applications, it’s good practice to strictly separate these two roles, because it keeps things simpler. This section describes the full generator interface (which combines both roles) and one use case where both roles are needed: cooperative multitasking, where tasks must be able to both send and receive information.
The full interface of generator objects, Generator
, handles both output and input:
The interface Generator
combines two interfaces that we have seen previously: Iterator
for output and Observer
for input.
Cooperative multitasking is an application of generators where we need them to handle both output and input. Before we get into how that works, let’s first review the current state of parallelism in JavaScript.
JavaScript runs in a single process. There are two ways in which this limitation is being abolished:
Two use cases benefit from cooperative multitasking, because they involve control flows that are mostly sequential, anyway, with occasional pauses:
Several Promise-based libraries simplify asynchronous code via generators. Generators are ideal as clients of Promises, because they can be suspended until a result arrives.
The following example demonstrates what that looks like if one uses the library co by T.J. Holowaychuk. We need two libraries (if we run Node.js code via babel-node
):
co
is the actual library for cooperative multitasking, isomorphic-fetch
is a polyfill for the new Promise-based fetch
API (a replacement of XMLHttpRequest
; read “That’s so fetch!” by Jake Archibald for more information). fetch
makes it easy to write a function getFile
that returns the text of a file at a url
via a Promise:
We now have all the ingredients to use co
. The following task reads the texts of two files, parses the JSON inside them and logs the result.
Note how nicely synchronous this code looks, even though it makes an asynchronous call in line A. A generator-as-task makes an async call by yielding a Promise to the scheduler function co
. The yielding pauses the generator. Once the Promise returns a result, the scheduler resumes the generator by passing it the result via next()
. A simple version of co
looks as follows.
I have ignored that next()
(line A) and throw()
(line B) may throw exceptions (whenever an exception escapes the body of the generator function).
Coroutines are cooperatively multitasked tasks that have no limitations: Inside a coroutine, any function can suspend the whole coroutine (the function activation itself, the activation of the function’s caller, the caller’s caller, etc.).
In contrast, you can only suspend a generator from directly within a generator and only the current function activation is suspended. Due to these limitations, generators are occasionally called shallow coroutines [3].
The limitations of generators have two main benefits:
JavaScript already has a very simple style of cooperative multitasking: the event loop, which schedules the execution of tasks in a queue. Each task is started by calling a function and finished once that function is finished. Events, setTimeout()
and other mechanisms add tasks to the queue.
This style of multitasking makes one important guarantee: run to completion; every function can rely on not being interrupted by another task until it is finished. Functions become transactions and can perform complete algorithms without anyone seeing the data they operate on in an intermediate state. Concurrent access to shared data makes multitasking complicated and is not allowed by JavaScript’s concurrency model. That’s why run to completion is a good thing.
Alas, coroutines prevent run to completion, because any function could suspend its caller. For example, the following algorithm consists of multiple steps:
If step2
was to suspend the algorithm, other tasks could run before the last step of the algorithm is performed. Those tasks could contain other parts of the application which would see sharedData
in an unfinished state. Generators preserve run to completion, they only suspend themselves and return to their caller.
co
and similar libraries give you most of the power of coroutines, without their disadvantages:
yield*
. That gives callers control over suspension.This section gives several examples of what generators can be used for.
In the chapter on iteration, I implemented several iterables “by hand”. In this section, I use generators, instead.
take()
take()
converts a (potentially infinite) sequence of iterated values into a sequence of length n
:
The following is an example of using it:
An implementation of take()
without generators is more complicated:
Note that the iterable combinator zip()
does not profit much from being implemented via a generator, because multiple iterables are involved and for-of
can’t be used.
naturalNumbers()
returns an iterable over all natural numbers:
This function is often used in conjunction with a combinator:
Here is the non-generator implementation, so you can compare:
map
, filter
Arrays can be transformed via the methods map
and filter
. Those methods can be generalized to have iterables as input and iterables as output.
map()
This is the generalized version of map
:
map()
works with infinite iterables:
filter()
This is the generalized version of filter
:
filter()
works with infinite iterables:
The next two examples show how generators can be used to process a stream of characters.
/^[A-Za-z0-9]+$/
. Non-word characters are ignored, but they separate words. The input of this step is a stream of characters, the output a stream of words./^[0-9]+$/
and convert them to numbers.The neat thing is that everything is computed lazily (incrementally and on demand): computation starts as soon as the first character arrives. For example, we don’t have to wait until we have all characters to get the first word.
Lazy pull with generators works as follows. The three generators implementing steps 1–3 are chained as follows:
Each of the chain members pulls data from a source and yields a sequence of items. Processing starts with tokenize
whose source is the string CHARS
.
The following trick makes the code a bit simpler: the end-of-sequence iterator result (whose property done
is false
) is converted into the sentinel value END_OF_SEQUENCE
.
How is this generator lazy? When you ask it for a token via next()
, it pulls its iterator
(lines A and B) as often as needed to produce as token and then yields that token (line C). Then it pauses until it is again asked for a token. That means that tokenization starts as soon as the first characters are available, which is convenient for streams.
Let’s try out tokenization. Note that the spaces and the dot are non-words. They are ignored, but they separate words. We use the fact that strings are iterables over characters (Unicode code points). The result of tokenize()
is an iterable over words, which we turn into an array via the spread operator (...
).
This step is relatively simple, we only yield
words that contain nothing but digits, after converting them to numbers via Number()
.
You can again see the laziness: If you ask for a number via next()
, you get one (via yield
) as soon as one is encountered in words
.
Let’s extract the numbers from an Array of words:
Note that strings are converted to numbers.
Let’s try a simple example:
On its own, the chain of generator doesn’t produce output. We need to actively pull the output via the spread operator:
The helper function logAndYield
allows us to examine whether things are indeed computed lazily:
The output shows that addNumbers
produces a result as soon as the characters '2'
and ' '
are received.
Not much work is needed to convert the previous pull-based algorithm into a push-based one. The steps are the same. But instead of finishing via pulling, we start via pushing.
As previously explained, if generators receive input via yield
, the first invocation of next()
on the generator object doesn’t do anything. That’s why I use the previously shown helper function coroutine()
to create coroutines here. It executes the first next()
for us.
The following function send()
does the pushing.
When a generator processes a stream, it needs to be aware of the end of the stream, so that it can clean up properly. For pull, we did this via a special end-of-stream sentinel. For push, the end-of-stream is signaled via return()
.
Let’s test send()
via a generator that simply outputs everything it receives:
Let’s send logItems()
three characters via a string (which is an iterable over Unicode code points).
Note how this generator reacts to the end of the stream (as signaled via return()
) in two finally
clauses. We depend on return()
being sent to either one of the two yield
s. Otherwise, the generator would never terminate, because the infinite loop starting in line A would never terminate.
This time, the laziness is driven by push: as soon as the generator has received enough characters for a word (in line C), it pushes the word into sink
(line D). That is, the generator does not wait until it has received all characters.
tokenize()
demonstrates that generators work well as implementations of linear state machines. In this case, the machine has two states: “inside a word” and “not inside a word”.
Let’s tokenize a string:
This step is straightforward.
Things are again lazy: as soon as a number is encountered, it is pushed to sink
.
Let’s extract the numbers from an Array of words:
Note that the input is a sequence of strings, while the output is a sequence of numbers.
This time, we react to the end of the stream by pushing a single value and then closing the sink.
Let’s try out this generator:
The chain of generators starts with tokenize
and ends with logItems
, which logs everything it receives. We push a sequence of characters into the chain via send
:
The following code proves that processing really happens lazily:
The output shows that addNumbers
produces a result as soon as the characters '2'
and ' '
are pushed.
In this example, we create a counter that is displayed on a web page. We improve an initial version until we have a cooperatively multitasked version that doesn’t block the main thread and the user interface.
This is the part of the web page in which the counter should be displayed:
This function displays a counter that counts up forever5:
If you ran this function, it would completely block the user interface thread in which it runs and its tab would become unresponsive.
Let’s implement the same functionality via a generator that periodically pauses via yield
(a scheduling function for running this generator is shown later):
Let’s add one small improvement. We move the update of the user interface to another generator, displayCounter
, which we call via yield*
. As it is a generator, it can also take care of pausing.
Lastly, this is a scheduling function that we can use to run countUp()
. Each execution step of the generator is handled by a separate task, which is created via setTimeout()
. That means that the user interface can schedule other tasks in between and will remain responsive.
With the help of run
, we get a (nearly) infinite count-up that doesn’t block the user interface:
If you call a generator function (or method), it does not have access to its generator object; its this
is the this
it would have if it were a non-generator function. A work-around is to pass the generator object into the generator function via yield
.
The following Node.js script uses this technique, but wraps the generator object in a callback (next
, line A). It must be run via babel-node
.
In line A, we get a callback that we can use with functions that follow Node.js callback conventions. The callback uses the generator object to wake up the generator, as you can see in the implementation of run()
:
The library js-csp
brings Communicating Sequential Processes (CSP) to JavaScript, a style of cooperative multitasking that is similar to ClojureScript’s core.async and Go’s goroutines. js-csp
has two abstractions:
go()
.chan()
.As an example, let’s use CSP to handle DOM events, in a manner reminiscent of Functional Reactive Programming. The following code uses the function listen()
(which is shown later) to create a channel that outputs mousemove
events. It then continuously retrieves the output via take
, inside an infinite loop. Thanks to yield
, the process blocks until the channel has output.
listen()
is implemented as follows.
This is a diagram of how various objects are connected in ECMAScript 6 (it is based on Allen Wirf-Brock’s diagram in the ECMAScript specification):
Legend:
x
to y
means that Object.getPrototypeOf(x) === y
.instanceof
arrow from x
to y
means that x instanceof y
.
o instanceof C
is equivalent to C.prototype.isPrototypeOf(o)
.prototype
arrow from x
to y
means that x.prototype === y
.The diagram reveals two interesting facts:
First, a generator function g
works very much like a constructor (however, you can’t invoke it via new
; that causes a TypeError
): The generator objects it creates are instances of it, methods added to g.prototype
become prototype methods, etc.:
Second, if you want to make methods available for all generator objects, it’s best to add them to (Generator).prototype
. One way of accessing that object is as follows:
IteratorPrototype
There is no (Iterator)
in the diagram, because no such object exists. But, given how instanceof
works and because (IteratorPrototype)
is a prototype of g1()
, you could still say that g1()
is an instance of Iterator
.
All iterators in ES6 have (IteratorPrototype)
in their prototype chain. That object is iterable, because it has the following method. Therefore, all ES6 iterators are iterable (as a consequence, you can apply for-of
etc. to them).
The specification recommends to use the following code to access (IteratorPrototype)
:
You could also use:
Quoting the ECMAScript 6 specification:
ECMAScript code may also define objects that inherit from
IteratorPrototype
. TheIteratorPrototype
object provides a place where additional methods that are applicable to all iterator objects may be added.
IteratorPrototype
will probably become directly accessible in an upcoming version of ECMAScript and contain tool methods such as map()
and filter()
(source).
this
in generators A generator function combines two concerns:
That’s why it’s not immediately obvious what the value of this
should be inside a generator.
In function calls and method calls, this
is what it would be if gen()
wasn’t a generator function, but a normal function:
If you access this
in a generator that was invoked via new
, you get a ReferenceError
(source: ES6 spec):
A work-around is to wrap the generator in a normal function that hands the generator its generator object via next()
. That means that the generator must use its first yield
to retrieve its generator object:
Reasonable – and legal – variations of formatting the asterisk are:
function * foo(x, y) { ··· }
function *foo(x, y) { ··· }
function* foo(x, y) { ··· }
function*foo(x, y) { ··· }
Let’s figure out which of these variations make sense for which constructs and why.
Here, the star is only used because generator
(or something similar) isn’t available as a keyword. If it were, then a generator function declaration would look like this:
Instead of generator
, ECMAScript 6 marks the function
keyword with an asterisk. Thus, function*
can be seen as a synonym for generator
, which suggests writing generator function declarations as follows.
Anonymous generator function expressions would be formatted like this:
When writing generator method definitions, I recommend to format the asterisk as follows.
There are three arguments in favor of writing a space after the asterisk.
First, the asterisk shouldn’t be part of the method name. On one hand, it isn’t part of the name of a generator function. On the other hand, the asterisk is only mentioned when defining a generator, not when using it.
Second, a generator method definition is an abbreviation for the following syntax. (To make my point, I’m redundantly giving the function expression a name, too.)
If method definitions are about omitting the function
keyword then the asterisk should be followed by a space.
Third, generator method definitions are syntactically similar to getters and setters (which are already available in ECMAScript 5):
The keywords get
and set
can be seen as modifiers of a normal method definition. Arguably, an asterisk is also such a modifier.
yield
The following is an example of a generator function yielding its own yielded values recursively:
The asterisk marks a different kind of yield
operator, which is why the above way of writing it makes sense.
Kyle Simpson (@getify) proposed something interesting: Given that we often append parentheses when we write about functions and methods such as Math.max()
, wouldn’t it make sense to prepend an asterisk when writing about generator functions and methods? For example: should we write *foo()
to refer to the generator function in the previous subsection? Let me argue against that.
When it comes to writing a function that returns an iterable, a generator is only one of the several options. I think it is better to not give away this implementation detail via marked function names.
Furthermore, you don’t use the asterisk when calling a generator function, but you do use parentheses.
Lastly, the asterisk doesn’t provide useful information – yield*
can also be used with functions that return an iterable. But it may make sense to mark the names of functions and methods (including generators) that return iterables. For example, via the suffix Iter
.
function*
for generators and not generator
? Due to backward compatibility, using the keyword generator
wasn’t an option. For example, the following code (a hypothetical ES6 anonymous generator expression) could be an ES5 function call followed by a code block.
I find that the asterisk naming scheme extends nicely to yield*
.
yield
a keyword? yield
is only a reserved word in strict mode. A trick is used to bring it to ES6 sloppy mode: it becomes a contextual keyword, one that is only available inside generators.
I hope that this chapter convinced you that generators are a useful and versatile tool.
I like that generators let you implement cooperatively multitasked tasks that block while making asynchronous function calls. In my opinion that’s the right mental model for async calls. Hopefully, JavaScript goes further in this direction in the future.
Sources of this chapter:
[1] “Async Generator Proposal” by Jafar Husain
[2] “A Curious Course on Coroutines and Concurrency” by David Beazley
[3] “Why coroutines won’t work on the web” by David Herman