Censor all Call objects, per ECMA-262 (r=rogerl, 53037).

This commit is contained in:
brendan%mozilla.org 2000-09-18 23:35:22 +00:00
Родитель 77bc43b390
Коммит bea5c86c60
1 изменённых файлов: 1 добавлений и 4 удалений

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

@ -554,10 +554,7 @@ ComputeThis(JSContext *cx, JSObject *thisp, JSStackFrame *fp)
{
JSObject *parent;
if (thisp &&
!(OBJ_GET_CLASS(cx, thisp) == &js_CallClass &&
JS_GetPrivate(cx, thisp) != NULL))
{
if (thisp && OBJ_GET_CLASS(cx, thisp) != &js_CallClass) {
/* Some objects (e.g., With) delegate 'this' to another object. */
thisp = OBJ_THIS_OBJECT(cx, thisp);
if (!thisp)