зеркало из https://github.com/mozilla/gecko-dev.git
Must JS_SetGlobalObject at least, if not JS_InitStandardClasses, before defining native functions at startup.
This commit is contained in:
Родитель
fc0f54894f
Коммит
53ea2141f3
|
@ -1964,7 +1964,9 @@ main(int argc, char **argv)
|
|||
glob = JS_NewObject(cx, &global_class, NULL, NULL);
|
||||
if (!glob)
|
||||
return 1;
|
||||
#ifndef LAZY_STANDARD_CLASSES
|
||||
#ifdef LAZY_STANDARD_CLASSES
|
||||
JS_SetGlobalObject(cx, glob);
|
||||
#else
|
||||
if (!JS_InitStandardClasses(cx, glob))
|
||||
return 1;
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче