flexxui / pscript

Python to JavaScript compiler
http://pscript.readthedocs.io
BSD 2-Clause "Simplified" License
256 stars 25 forks source link

JavaScript yield #26

Open jakirkham opened 6 years ago

jakirkham commented 6 years ago

In the docs, it says yield is unsupported because JavaScript support for this is not that common. Not sure when that was written, but it looks this is supported on common browsers (see generators). So it should be ok to add.

ref: http://pscript.readthedocs.io/en/latest/intro.html#support

almarklein commented 6 years ago

Also https://caniuse.com/#search=generator

almarklein commented 6 years ago

Somewhat related: I just added async and await support (needed it in a project) 🎆