Don't deprecate __proto__, there ain't no forward-compatible alternative (68401, r=timeless, sr=shaver).

This commit is contained in:
brendan%mozilla.org 2001-02-24 03:07:58 +00:00
Родитель ee954accd5
Коммит 55d5713602
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -134,6 +134,8 @@ static JSPropertySpec object_props[] = {
static JSBool
ReportStrictSlot(JSContext *cx, uint32 slot)
{
if (slot == JSSLOT_PROTO)
return JS_TRUE;
return JS_ReportErrorFlagsAndNumber(cx,
JSREPORT_WARNING | JSREPORT_STRICT,
js_GetErrorMessage, NULL,