2021-10-17 12:17:48 -04:00
|
|
|
/* The Quickjs ECMAScript backend. */
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "elinks.h"
|
|
|
|
|
|
|
|
#include "bfu/dialog.h"
|
|
|
|
#include "cache/cache.h"
|
|
|
|
#include "config/options.h"
|
|
|
|
#include "cookies/cookies.h"
|
|
|
|
#include "dialogs/menu.h"
|
|
|
|
#include "dialogs/status.h"
|
|
|
|
#include "document/html/frames.h"
|
2023-05-05 14:40:17 -04:00
|
|
|
#include "document/libdom/renderer.h"
|
|
|
|
#include "document/libdom/renderer2.h"
|
2021-10-17 12:17:48 -04:00
|
|
|
#include "document/document.h"
|
|
|
|
#include "document/forms.h"
|
|
|
|
#include "document/renderer.h"
|
|
|
|
#include "document/view.h"
|
|
|
|
#include "ecmascript/ecmascript.h"
|
|
|
|
#include "ecmascript/quickjs.h"
|
2021-10-22 12:47:09 -04:00
|
|
|
#include "ecmascript/quickjs/console.h"
|
2021-11-05 13:58:15 -04:00
|
|
|
#include "ecmascript/quickjs/document.h"
|
2021-11-29 13:28:38 -05:00
|
|
|
#include "ecmascript/quickjs/element.h"
|
2021-11-07 10:04:36 -05:00
|
|
|
#include "ecmascript/quickjs/heartbeat.h"
|
2021-10-21 11:17:26 -04:00
|
|
|
#include "ecmascript/quickjs/history.h"
|
2021-10-25 12:43:39 -04:00
|
|
|
#include "ecmascript/quickjs/localstorage.h"
|
2021-10-22 10:10:40 -04:00
|
|
|
#include "ecmascript/quickjs/location.h"
|
2023-11-23 12:05:23 -05:00
|
|
|
#include "ecmascript/quickjs/mapa.h"
|
2021-10-20 14:00:19 -04:00
|
|
|
#include "ecmascript/quickjs/navigator.h"
|
2021-10-18 13:34:11 -04:00
|
|
|
#include "ecmascript/quickjs/screen.h"
|
2021-10-19 14:49:53 -04:00
|
|
|
#include "ecmascript/quickjs/unibar.h"
|
2021-10-17 12:17:48 -04:00
|
|
|
#include "ecmascript/quickjs/window.h"
|
2022-10-23 13:50:48 -04:00
|
|
|
#include "ecmascript/quickjs/xhr.h"
|
2021-10-17 12:17:48 -04:00
|
|
|
#include "intl/libintl.h"
|
|
|
|
#include "main/select.h"
|
|
|
|
#include "osdep/newwin.h"
|
|
|
|
#include "osdep/sysname.h"
|
|
|
|
#include "protocol/http/http.h"
|
|
|
|
#include "protocol/uri.h"
|
|
|
|
#include "session/history.h"
|
|
|
|
#include "session/location.h"
|
|
|
|
#include "session/session.h"
|
|
|
|
#include "session/task.h"
|
|
|
|
#include "terminal/tab.h"
|
|
|
|
#include "terminal/terminal.h"
|
|
|
|
#include "util/conv.h"
|
2023-10-25 11:10:59 -04:00
|
|
|
#include "util/memcount.h"
|
2021-10-17 12:17:48 -04:00
|
|
|
#include "util/string.h"
|
|
|
|
#include "viewer/text/draw.h"
|
|
|
|
#include "viewer/text/form.h"
|
|
|
|
#include "viewer/text/link.h"
|
|
|
|
#include "viewer/text/view.h"
|
|
|
|
#include "viewer/text/vs.h"
|
|
|
|
|
|
|
|
/*** Global methods */
|
|
|
|
|
|
|
|
static void
|
|
|
|
quickjs_init(struct module *xxx)
|
|
|
|
{
|
2023-01-21 09:38:53 -05:00
|
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
|
|
#endif
|
2023-04-04 08:35:06 -04:00
|
|
|
map_attrs = attr_create_new_attrs_map();
|
|
|
|
map_attributes = attr_create_new_attributes_map();
|
|
|
|
map_rev_attributes = attr_create_new_attributes_map_rev();
|
|
|
|
map_collections = attr_create_new_collections_map();
|
|
|
|
map_rev_collections = attr_create_new_collections_map_rev();
|
|
|
|
map_doctypes = attr_create_new_doctypes_map();
|
|
|
|
map_elements = attr_create_new_elements_map();
|
|
|
|
map_privates = attr_create_new_privates_map_void();
|
|
|
|
map_form = attr_create_new_form_map();
|
|
|
|
map_form_rev = attr_create_new_form_map_rev();
|
|
|
|
map_forms = attr_create_new_forms_map();
|
|
|
|
map_rev_forms = attr_create_new_forms_map_rev();
|
|
|
|
map_inputs = attr_create_new_input_map();
|
|
|
|
map_nodelist = attr_create_new_nodelist_map();
|
|
|
|
map_rev_nodelist = attr_create_new_nodelist_map_rev();
|
2023-04-04 08:45:47 -04:00
|
|
|
|
|
|
|
map_form_elements = attr_create_new_form_elements_map();
|
|
|
|
map_form_elements_rev = attr_create_new_form_elements_map_rev();
|
2021-10-17 12:17:48 -04:00
|
|
|
//js_module_init_ok = spidermonkey_runtime_addref();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
quickjs_done(struct module *xxx)
|
|
|
|
{
|
2023-01-21 09:38:53 -05:00
|
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
|
|
#endif
|
2023-04-04 08:35:06 -04:00
|
|
|
attr_clear_map(map_attrs);
|
|
|
|
attr_clear_map(map_attributes);
|
|
|
|
attr_clear_map_rev(map_rev_attributes);
|
|
|
|
attr_clear_map(map_collections);
|
|
|
|
attr_clear_map_rev(map_rev_collections);
|
|
|
|
attr_clear_map(map_doctypes);
|
|
|
|
attr_clear_map(map_elements);
|
|
|
|
attr_clear_map_void(map_privates);
|
|
|
|
attr_clear_map(map_form);
|
|
|
|
attr_clear_map_rev(map_form_rev);
|
|
|
|
attr_clear_map(map_forms);
|
|
|
|
attr_clear_map_rev(map_rev_forms);
|
|
|
|
attr_clear_map(map_inputs);
|
|
|
|
attr_clear_map(map_nodelist);
|
|
|
|
attr_clear_map_rev(map_rev_nodelist);
|
|
|
|
|
2023-04-04 08:45:47 -04:00
|
|
|
attr_clear_map(map_form_elements);
|
|
|
|
attr_clear_map_rev(map_form_elements_rev);
|
|
|
|
|
2023-04-04 08:35:06 -04:00
|
|
|
attr_delete_map(map_attrs);
|
|
|
|
attr_delete_map(map_attributes);
|
|
|
|
attr_delete_map_rev(map_rev_attributes);
|
|
|
|
attr_delete_map(map_collections);
|
|
|
|
attr_delete_map_rev(map_rev_collections);
|
|
|
|
attr_delete_map(map_doctypes);
|
|
|
|
attr_delete_map(map_elements);
|
|
|
|
attr_delete_map_void(map_privates);
|
|
|
|
attr_delete_map(map_form);
|
|
|
|
attr_delete_map_rev(map_form_rev);
|
|
|
|
attr_delete_map(map_forms);
|
|
|
|
attr_delete_map_rev(map_rev_forms);
|
|
|
|
attr_delete_map(map_inputs);
|
|
|
|
attr_delete_map(map_nodelist);
|
|
|
|
attr_delete_map_rev(map_rev_nodelist);
|
|
|
|
|
2023-04-04 08:45:47 -04:00
|
|
|
attr_delete_map(map_form_elements);
|
|
|
|
attr_delete_map_rev(map_form_elements_rev);
|
|
|
|
|
2021-10-17 12:17:48 -04:00
|
|
|
// if (js_module_init_ok)
|
|
|
|
// spidermonkey_runtime_release();
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
quickjs_get_interpreter(struct ecmascript_interpreter *interpreter)
|
|
|
|
{
|
2023-01-21 09:38:53 -05:00
|
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
|
|
#endif
|
2021-10-17 12:17:48 -04:00
|
|
|
JSContext *ctx;
|
|
|
|
// JSObject *console_obj, *document_obj, /* *forms_obj,*/ *history_obj, *location_obj,
|
|
|
|
// *statusbar_obj, *menubar_obj, *navigator_obj, *localstorage_obj, *screen_obj;
|
|
|
|
|
|
|
|
assert(interpreter);
|
|
|
|
// if (!js_module_init_ok) return NULL;
|
|
|
|
|
2023-10-25 11:10:59 -04:00
|
|
|
#ifdef CONFIG_DEBUG
|
|
|
|
interpreter->rt = JS_NewRuntime2(&el_quickjs_mf, NULL);
|
|
|
|
#else
|
2023-01-21 09:38:53 -05:00
|
|
|
interpreter->rt = JS_NewRuntime();
|
2023-10-25 11:10:59 -04:00
|
|
|
#endif
|
2023-01-21 09:38:53 -05:00
|
|
|
if (!interpreter->rt) {
|
2021-10-17 12:17:48 -04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-01-21 09:38:53 -05:00
|
|
|
JS_SetMemoryLimit(interpreter->rt, 64 * 1024 * 1024);
|
|
|
|
JS_SetGCThreshold(interpreter->rt, 16 * 1024 * 1024);
|
2021-11-29 13:28:38 -05:00
|
|
|
|
2023-01-21 09:38:53 -05:00
|
|
|
ctx = JS_NewContext(interpreter->rt);
|
2021-10-17 12:17:48 -04:00
|
|
|
|
|
|
|
if (!ctx) {
|
2023-01-21 09:38:53 -05:00
|
|
|
JS_FreeRuntime(interpreter->rt);
|
2021-10-17 12:17:48 -04:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
interpreter->backend_data = ctx;
|
|
|
|
JS_SetContextOpaque(ctx, interpreter);
|
|
|
|
|
|
|
|
// JS::SetWarningReporter(ctx, error_reporter);
|
|
|
|
|
2023-01-21 09:38:53 -05:00
|
|
|
JS_SetInterruptHandler(interpreter->rt, js_heartbeat_callback, interpreter);
|
2021-10-17 12:17:48 -04:00
|
|
|
// JS::RealmOptions options;
|
|
|
|
|
|
|
|
// JS::RootedObject window_obj(ctx, JS_NewGlobalObject(ctx, &window_class, NULL, JS::FireOnNewGlobalHook, options));
|
|
|
|
|
2021-11-26 13:54:29 -05:00
|
|
|
js_window_init(ctx);
|
|
|
|
js_screen_init(ctx);
|
|
|
|
js_unibar_init(ctx);
|
|
|
|
js_navigator_init(ctx);
|
|
|
|
js_history_init(ctx);
|
|
|
|
js_console_init(ctx);
|
|
|
|
js_localstorage_init(ctx);
|
2021-11-29 13:28:38 -05:00
|
|
|
js_element_init(ctx);
|
2022-10-23 13:50:48 -04:00
|
|
|
js_xhr_init(ctx);
|
2021-11-26 13:54:29 -05:00
|
|
|
|
|
|
|
interpreter->document_obj = js_document_init(ctx);
|
2021-10-17 12:17:48 -04:00
|
|
|
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
quickjs_put_interpreter(struct ecmascript_interpreter *interpreter)
|
|
|
|
{
|
2023-01-21 09:38:53 -05:00
|
|
|
#ifdef ECMASCRIPT_DEBUG
|
|
|
|
fprintf(stderr, "%s:%s\n", __FILE__, __FUNCTION__);
|
|
|
|
#endif
|
2021-10-17 12:17:48 -04:00
|
|
|
JSContext *ctx;
|
|
|
|
|
|
|
|
assert(interpreter);
|
|
|
|
|
2022-01-30 07:32:19 -05:00
|
|
|
ctx = (JSContext *)interpreter->backend_data;
|
2023-01-21 09:38:53 -05:00
|
|
|
|
2021-11-17 11:42:22 -05:00
|
|
|
JS_FreeContext(ctx);
|
2023-01-21 09:38:53 -05:00
|
|
|
JS_FreeRuntime(interpreter->rt);
|
2021-11-17 11:42:22 -05:00
|
|
|
interpreter->backend_data = nullptr;
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
|
|
|
|
2021-11-28 09:23:46 -05:00
|
|
|
static void
|
2022-06-11 16:21:23 -04:00
|
|
|
js_dump_obj(JSContext *ctx, struct string *f, JSValueConst val)
|
2021-11-28 09:23:46 -05:00
|
|
|
{
|
|
|
|
const char *str;
|
|
|
|
|
|
|
|
str = JS_ToCString(ctx, val);
|
|
|
|
|
|
|
|
if (str) {
|
2022-06-11 16:21:23 -04:00
|
|
|
add_to_string(f, str);
|
|
|
|
add_char_to_string(f, '\n');
|
2021-11-28 09:23:46 -05:00
|
|
|
JS_FreeCString(ctx, str);
|
|
|
|
} else {
|
2022-06-11 16:21:23 -04:00
|
|
|
add_to_string(f, "[exception]\n");
|
2021-11-28 09:23:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-06-11 16:21:23 -04:00
|
|
|
js_dump_error1(JSContext *ctx, struct string *f, JSValueConst exception_val)
|
2021-11-28 09:23:46 -05:00
|
|
|
{
|
|
|
|
JSValue val;
|
|
|
|
bool is_error;
|
|
|
|
|
|
|
|
is_error = JS_IsError(ctx, exception_val);
|
|
|
|
js_dump_obj(ctx, f, exception_val);
|
|
|
|
|
|
|
|
if (is_error) {
|
|
|
|
val = JS_GetPropertyStr(ctx, exception_val, "stack");
|
|
|
|
|
|
|
|
if (!JS_IsUndefined(val)) {
|
|
|
|
js_dump_obj(ctx, f, val);
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
2021-11-28 09:23:46 -05:00
|
|
|
JS_FreeValue(ctx, val);
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
|
|
|
}
|
2021-11-28 09:23:46 -05:00
|
|
|
|
|
|
|
static void
|
2022-06-11 16:21:23 -04:00
|
|
|
js_dump_error(JSContext *ctx, struct string *f)
|
2021-11-28 09:23:46 -05:00
|
|
|
{
|
|
|
|
JSValue exception_val;
|
|
|
|
|
|
|
|
exception_val = JS_GetException(ctx);
|
|
|
|
js_dump_error1(ctx, f, exception_val);
|
|
|
|
JS_FreeValue(ctx, exception_val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
error_reporter(struct ecmascript_interpreter *interpreter, JSContext *ctx)
|
|
|
|
{
|
|
|
|
struct session *ses = interpreter->vs->doc_view->session;
|
|
|
|
struct terminal *term;
|
|
|
|
struct string msg;
|
2022-06-11 16:21:23 -04:00
|
|
|
struct string f;
|
2021-11-28 09:23:46 -05:00
|
|
|
|
|
|
|
assert(interpreter && interpreter->vs && interpreter->vs->doc_view
|
|
|
|
&& ses && ses->tab);
|
|
|
|
if_assert_failed return;
|
|
|
|
|
|
|
|
term = ses->tab->term;
|
|
|
|
|
|
|
|
#ifdef CONFIG_LEDS
|
|
|
|
set_led_value(ses->status.ecmascript_led, 'J');
|
2021-10-17 12:17:48 -04:00
|
|
|
#endif
|
|
|
|
|
2021-11-28 09:23:46 -05:00
|
|
|
if (!get_opt_bool("ecmascript.error_reporting", ses)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-11 16:21:23 -04:00
|
|
|
if (init_string(&f)) {
|
|
|
|
js_dump_error(ctx, &f);
|
2021-11-28 09:23:46 -05:00
|
|
|
|
|
|
|
if (!init_string(&msg)) {
|
2022-06-11 16:21:23 -04:00
|
|
|
done_string(&f);
|
|
|
|
return;
|
2021-11-28 09:23:46 -05:00
|
|
|
} else {
|
|
|
|
add_to_string(&msg,
|
|
|
|
_("A script embedded in the current document raised the following:\n", term));
|
2022-06-11 16:21:23 -04:00
|
|
|
add_string_to_string(&msg, &f);
|
|
|
|
done_string(&f);
|
2021-11-28 09:23:46 -05:00
|
|
|
info_box(term, MSGBOX_FREE_TEXT, N_("JavaScript Error"), ALIGN_CENTER, msg.source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-17 12:17:48 -04:00
|
|
|
void
|
|
|
|
quickjs_eval(struct ecmascript_interpreter *interpreter,
|
|
|
|
struct string *code, struct string *ret)
|
|
|
|
{
|
|
|
|
JSContext *ctx;
|
|
|
|
|
|
|
|
assert(interpreter);
|
|
|
|
// if (!js_module_init_ok) {
|
|
|
|
// return;
|
|
|
|
// }
|
2022-01-30 07:32:19 -05:00
|
|
|
ctx = (JSContext *)interpreter->backend_data;
|
2021-11-07 10:04:36 -05:00
|
|
|
interpreter->heartbeat = add_heartbeat(interpreter);
|
2021-10-17 12:17:48 -04:00
|
|
|
interpreter->ret = ret;
|
|
|
|
JSValue r = JS_Eval(ctx, code->source, code->length, "", 0);
|
2021-11-07 10:04:36 -05:00
|
|
|
done_heartbeat(interpreter->heartbeat);
|
2021-11-28 09:23:46 -05:00
|
|
|
|
|
|
|
if (JS_IsException(r)) {
|
|
|
|
error_reporter(interpreter, ctx);
|
|
|
|
}
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
quickjs_call_function(struct ecmascript_interpreter *interpreter,
|
2021-11-12 15:53:31 -05:00
|
|
|
JSValueConst fun, struct string *ret)
|
2021-10-17 12:17:48 -04:00
|
|
|
{
|
|
|
|
JSContext *ctx;
|
|
|
|
|
|
|
|
assert(interpreter);
|
2021-11-12 15:53:31 -05:00
|
|
|
// if (!js_module_init_ok) {
|
|
|
|
// return;
|
|
|
|
// }
|
2022-01-30 07:32:19 -05:00
|
|
|
ctx = (JSContext *)interpreter->backend_data;
|
2021-10-17 12:17:48 -04:00
|
|
|
|
|
|
|
interpreter->heartbeat = add_heartbeat(interpreter);
|
|
|
|
interpreter->ret = ret;
|
2023-01-25 10:14:51 -05:00
|
|
|
|
|
|
|
JSValue global_object = JS_GetGlobalObject(ctx);
|
|
|
|
REF_JS(global_object);
|
|
|
|
|
|
|
|
JSValue r = JS_Call(ctx, fun, global_object, 0, nullptr);
|
|
|
|
JS_FreeValue(ctx, global_object);
|
|
|
|
|
2021-10-17 12:17:48 -04:00
|
|
|
done_heartbeat(interpreter->heartbeat);
|
2021-11-28 09:23:46 -05:00
|
|
|
|
|
|
|
if (JS_IsException(r)) {
|
|
|
|
error_reporter(interpreter, ctx);
|
|
|
|
}
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
quickjs_eval_stringback(struct ecmascript_interpreter *interpreter,
|
|
|
|
struct string *code)
|
|
|
|
{
|
|
|
|
JSContext *ctx;
|
|
|
|
|
|
|
|
assert(interpreter);
|
2021-11-08 13:42:07 -05:00
|
|
|
// if (!js_module_init_ok) {
|
|
|
|
// return;
|
|
|
|
// }
|
2022-01-30 07:32:19 -05:00
|
|
|
ctx = (JSContext *)interpreter->backend_data;
|
2021-10-17 12:17:48 -04:00
|
|
|
interpreter->heartbeat = add_heartbeat(interpreter);
|
2021-11-08 13:42:07 -05:00
|
|
|
interpreter->ret = nullptr;
|
|
|
|
JSValue r = JS_Eval(ctx, code->source, code->length, "", 0);
|
2021-10-17 12:17:48 -04:00
|
|
|
done_heartbeat(interpreter->heartbeat);
|
|
|
|
|
2021-11-08 13:42:07 -05:00
|
|
|
if (JS_IsNull(r)) {
|
|
|
|
return nullptr;
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
2021-11-08 13:42:07 -05:00
|
|
|
|
2021-11-28 09:23:46 -05:00
|
|
|
if (JS_IsException(r)) {
|
|
|
|
error_reporter(interpreter, ctx);
|
|
|
|
}
|
|
|
|
|
2022-01-30 07:32:19 -05:00
|
|
|
const char *str;
|
|
|
|
char *string;
|
2021-11-08 13:42:07 -05:00
|
|
|
size_t len;
|
|
|
|
str = JS_ToCStringLen(ctx, &len, r);
|
|
|
|
|
|
|
|
if (!str) {
|
|
|
|
return nullptr;
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
2021-11-08 13:42:07 -05:00
|
|
|
string = stracpy(str);
|
|
|
|
JS_FreeCString(ctx, str);
|
2021-10-17 12:17:48 -04:00
|
|
|
|
2021-11-08 13:42:07 -05:00
|
|
|
return string;
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
quickjs_eval_boolback(struct ecmascript_interpreter *interpreter,
|
|
|
|
struct string *code)
|
|
|
|
{
|
|
|
|
JSContext *ctx;
|
|
|
|
|
|
|
|
assert(interpreter);
|
2021-11-08 13:59:54 -05:00
|
|
|
// if (!js_module_init_ok) {
|
|
|
|
// return;
|
|
|
|
// }
|
2022-01-30 07:32:19 -05:00
|
|
|
ctx = (JSContext *)interpreter->backend_data;
|
2021-11-08 13:59:54 -05:00
|
|
|
interpreter->heartbeat = add_heartbeat(interpreter);
|
|
|
|
interpreter->ret = nullptr;
|
|
|
|
JSValue r = JS_Eval(ctx, code->source, code->length, "", 0);
|
|
|
|
done_heartbeat(interpreter->heartbeat);
|
2021-10-17 12:17:48 -04:00
|
|
|
|
2021-11-08 13:59:54 -05:00
|
|
|
if (JS_IsNull(r)) {
|
2021-10-17 12:17:48 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-11-08 13:59:54 -05:00
|
|
|
if (JS_IsUndefined(r)) {
|
2021-10-17 12:17:48 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2021-11-08 13:59:54 -05:00
|
|
|
int ret = -1;
|
2021-10-17 12:17:48 -04:00
|
|
|
|
2021-11-08 13:59:54 -05:00
|
|
|
JS_ToInt32(ctx, &ret, r);
|
|
|
|
|
2023-09-21 12:57:26 -04:00
|
|
|
|
2021-11-08 13:59:54 -05:00
|
|
|
return ret;
|
2021-10-17 12:17:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
struct module quickjs_module = struct_module(
|
|
|
|
/* name: */ N_("QuickJS"),
|
|
|
|
/* options: */ NULL,
|
|
|
|
/* events: */ NULL,
|
|
|
|
/* submodules: */ NULL,
|
|
|
|
/* data: */ NULL,
|
|
|
|
/* init: */ quickjs_init,
|
|
|
|
/* done: */ quickjs_done
|
|
|
|
);
|