зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1606868: Add scripted function type to default class constructors. r=jandem
Differential Revision: https://phabricator.services.mozilla.com/D58758 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
8346839a9e
Коммит
90806d1d0c
|
@ -302,6 +302,10 @@ JSFunction* js::MakeDefaultConstructor(JSContext* cx, HandleScript script,
|
|||
ctor->setIsConstructor();
|
||||
ctor->setIsClassConstructor();
|
||||
|
||||
if (!JSFunction::setTypeForScriptedFunction(cx, ctor)) {
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// Create the script now, so we can fix up its source span below.
|
||||
RootedScript ctorScript(cx, JSFunction::getOrCreateScript(cx, ctor));
|
||||
if (!ctorScript) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче