How to create a new runtime in spidermonkey 60
msami <[email protected]> Tue, 6 Aug 2019 02:33:41 -0700 (PDT)
| Newsgroups | gmane.comp.mozilla.devel.jseng |
|---|---|
| Message-ID | <[email protected]> |
in spidermonkey 45
I can create rt
// Create a JS runtime.
rt = JS_NewRuntime(8L * 1024L * 1024L);
// Create a context.
cx = JS_NewContext(rt, 8192);
but I want to control creating runtime and context
Thanks in advance