44 lines
806 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
The ``++yield++`` keyword is used in a generator function to return an ``++IteratorResult++`` to the caller. It has no other purpose, and if found outside such a function will raise a ``++ReferenceError++`` because it is then treated as an identifier.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,javascript]
2021-04-28 16:49:39 +02:00
----
function foo() {
for (var i = 0; i < 5; i++) {
yield i * 2;
}
}
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source,javascript]
2021-04-28 16:49:39 +02:00
----
function * foo() {
for (var i = 0; i < 5; i++) {
yield i * 2;
}
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
include::highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]