зеркало из https://github.com/mozilla/gecko-dev.git
Bug 818379. Make sure interface objects have a 'length' property even if they're not real function objects. r=peterv
This commit is contained in:
Родитель
a1a7cade04
Коммит
bac729de10
|
@ -271,6 +271,11 @@ CreateInterfaceObject(JSContext* cx, JSObject* global,
|
|||
}
|
||||
js::SetFunctionNativeReserved(toStringObj, TOSTRING_NAME_RESERVED_SLOT,
|
||||
STRING_TO_JSVAL(str));
|
||||
|
||||
if (!JS_DefineProperty(cx, constructor, "length", JS::Int32Value(ctorNargs),
|
||||
nullptr, nullptr, JSPROP_READONLY | JSPROP_PERMANENT)) {
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
if (properties) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче