This commit is contained in:
brendan@mozilla.org 2007-05-09 13:19:26 -07:00
Родитель a3f4751e3a
Коммит ea66fe68a8
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -4934,7 +4934,7 @@ JS_RestoreFrameChain(JSContext *cx, JSStackFrame *fp)
if (!fp)
return;
JS_ASSERT(cx->dormantFrameChain == fp);
JS_ASSERT(fp == cx->dormantFrameChain);
cx->fp = fp;
cx->dormantFrameChain = fp->dormantNext;
fp->dormantNext = NULL;

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

@ -1106,7 +1106,8 @@ js_InitExceptionClasses(JSContext *cx, JSObject *obj)
}
const JSErrorFormatString*
js_GetLocalizedErrorMessage(JSContext* cx, void *userRef, const char *locale, const uintN errorNumber)
js_GetLocalizedErrorMessage(JSContext* cx, void *userRef, const char *locale,
const uintN errorNumber)
{
const JSErrorFormatString *errorString = NULL;