diff options
author | Mathias Stearn <redbeard0531@gmail.com> | 2018-01-19 10:51:49 -0500 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-01-19 16:51:49 +0100 |
commit | d127dd8095355af75c478fdec67da60ddbe709e6 (patch) | |
tree | 42be7808226e6a3f6eac5fede180804113cfd4d5 /doc | |
parent | 00295366b55bbf9001c8d8540ff541daa8a0fa8c (diff) | |
download | Nim-d127dd8095355af75c478fdec67da60ddbe709e6.tar.gz |
Mention lack of js support in closure iterator limitations (#7110)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/procs.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/manual/procs.txt b/doc/manual/procs.txt index 44aeb089a..10dd39a52 100644 --- a/doc/manual/procs.txt +++ b/doc/manual/procs.txt @@ -571,6 +571,7 @@ Closure iterators have other restrictions than inline iterators: 3. ``return`` is allowed in a closure iterator (but rarely useful) and ends iteration. 4. Neither inline nor closure iterators can be recursive. +5. Closure iterators are not supported by the js backend. Iterators that are neither marked ``{.closure.}`` nor ``{.inline.}`` explicitly default to being inline, but this may change in future versions of the |