Search code examples
javascriptfirefoxweb-worker

Can I use the Javascript 1.7+ iterators and generators inside a Firefox web worker?


Or how do I tell Firefox to parse a web worker extension with mimetype application/javascript;version=1.7?

Firebug 1.7a9 in Firefox 4 Beta 9 gives:

missing ; before statement
[Break On This Error] yield k;

which is what it says when it doesn't recognize the generator yield keyword in a regular script tag.


Solution

  • You need to serve the file with that HTTP header. What server are you running?