bug 484769 - fixing the assert about the structure of sharp nodes. r=brendan

This commit is contained in:
Igor Bukanov 2009-03-25 16:01:29 +01:00
Родитель f501f60758
Коммит ddd3cfbcc3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3572,7 +3572,7 @@ EmitGroupAssignment(JSContext *cx, JSCodeGenerator *cg, JSOp declOp,
if (js_Emit1(cx, cg, JSOP_PUSH) < 0)
return JS_FALSE;
} else {
JS_ASSERT(pn->pn_type != TOK_DEFSHARP);
JS_ASSERT_IF(pn->pn_type == TOK_DEFSHARP, pn->pn_kid);
if (!js_EmitTree(cx, cg, pn))
return JS_FALSE;
}