Remove JSOP_BEGIN and fix tracer integration issues (bug 603044, r=luke+dmandelin).

This commit is contained in:
David Anderson
2010-10-15 11:36:56 -07:00
parent f8155eeab6
commit e46d061bee
35 changed files with 557 additions and 520 deletions

View File

@@ -1272,7 +1272,7 @@ SendToGenerator(JSContext *cx, JSGeneratorOp op, JSObject *obj,
if (!cx->ensureGeneratorStackSpace())
return JS_FALSE;
JS_ASSERT(gen->state == JSGEN_NEWBORN || gen->state == JSGEN_OPEN);
JS_ASSERT(gen->state == JSGEN_NEWBORN || gen->state == JSGEN_OPEN);
switch (op) {
case JSGENOP_NEXT:
case JSGENOP_SEND: