Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
*/
var { NetUtil } = ChromeUtils.importESModule(
);
// Helper to step a generator function and catch a StopIteration exception.
function do_run_generator(generator) {
try {
generator.next();
} catch (e) {
do_throw("caught exception " + e, Components.stack.caller);
}
}
// Helper to finish a generator function test.
function do_finish_generator_test(generator) {
executeSoon(function () {
generator.return();
do_test_finished();
});
}
function do_count_array(all) {
return all.length;
}