Fold constants correctly when emitting as we compile (TCF_COMPILING).

(#69304, r=jband, sr=brendan)
This commit is contained in:
shaver%mozilla.org 2001-02-18 20:58:08 +00:00
Родитель de95d1077f
Коммит 9d74dff12a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -840,7 +840,7 @@ Statements(JSContext *cx, JSTokenStream *ts, JSTreeContext *tc)
*/
tc->flags &= ~TCF_RETURN_EXPR;
}
if (!js_FoldConstants(cx, pn, tc) ||
if (!js_FoldConstants(cx, pn2, tc) ||
!js_AllocTryNotes(cx, (JSCodeGenerator *)tc) ||
!js_EmitTree(cx, (JSCodeGenerator *)tc, pn2)) {
tt = TOK_ERROR;