Bug 292397 JS_VERSION 130 doesn't build

r=brendan a=asa
This commit is contained in:
timeless%mozdev.org 2005-05-06 21:44:32 +00:00
Родитель 85b7a37413
Коммит f9f2477f8e
2 изменённых файлов: 5 добавлений и 1 удалений

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

@ -4399,7 +4399,7 @@ JS_DropExceptionState(JSContext *cx, JSExceptionState *state)
JS_PUBLIC_API(JSErrorReport *)
JS_ErrorFromException(JSContext *cx, jsval v)
{
#if JS_HAS_EXCEPTIONS
#if JS_HAS_ERROR_EXCEPTIONS
CHECK_REQUEST(cx);
return js_ErrorFromException(cx, v);
#else

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

@ -63,7 +63,9 @@ js_AtomToPrintableString(JSContext *cx, JSAtom *atom)
return js_ValueToPrintableString(cx, ATOM_KEY(atom));
}
#if JS_HAS_ERROR_EXCEPTIONS
extern const char js_Error_str[]; /* trivial, from jsexn.h */
#endif
/*
* Keep this in sync with jspubtd.h -- an assertion below will insist that
@ -301,7 +303,9 @@ js_InitPinnedAtoms(JSContext *cx, JSAtomState *state)
FROB(BooleanAtom, js_Boolean_str);
FROB(CallAtom, js_Call_str);
FROB(DateAtom, js_Date_str);
#if JS_HAS_ERROR_EXCEPTIONS
FROB(ErrorAtom, js_Error_str);
#endif
FROB(FunctionAtom, js_Function_str);
FROB(MathAtom, js_Math_str);
FROB(NumberAtom, js_Number_str);