Two issues
(1) jscoverage rejects a statement of the form "yield value" - workaround is to
write "yield(values)" instead.
(2) jscoverage changed this statement
setTimeout((yield (CONTINUATION)), millis);
to this
setTimeout(yield(CONTINUATION), millis);
losing the brackets around arg1. This was then reported as invalid in firefox.
As I believe the "yield" keyword is handled correctly with --js-version=1.7 or 1.8, I am closing this bug. If there are any further problems please submit a new bug.
Date submitted: 2009-06-11 23:19:03 UTC