Compare commits

...

2 commits

Author SHA1 Message Date
807be22562 make polyfills aio
Some checks are pending
ci / Linux (Ubuntu) (push) Waiting to run
ci / linux-asan (push) Waiting to run
ci / linux-msan (push) Waiting to run
ci / linux-ubsan (push) Waiting to run
ci / macOS (push) Waiting to run
ci / macos-asan (push) Waiting to run
ci / macos-ubsan (push) Waiting to run
ci / freebsd (push) Waiting to run
ci / qemu-alpine (arm32v6) (push) Waiting to run
ci / qemu-alpine (arm32v7) (push) Waiting to run
ci / qemu-alpine (arm64v8) (push) Waiting to run
ci / qemu-alpine (i386) (push) Waiting to run
ci / qemu-alpine (s390x) (push) Waiting to run
2024-10-24 15:56:39 -05:00
d838e9cc47 fixes + cleartimeout 2024-10-24 15:50:48 -05:00

20
qjs.c
View file

@ -497,27 +497,21 @@ int main(int argc, char **argv)
}
//POLYFILLS BEGIN
////Require and Global
const char *reqPF = "async function require(x) {\n"
const char *pf = "async function require(x) {\n"
" const y = await import(x);" // use dynamic import.
" return y;\n"
"}\n"
"globalThis.require = require;\n"
"globalThis.global = globalThis;\n";
eval_buf(ctx, reqPF, strlen(reqPF), "<input>", JS_EVAL_TYPE_MODULE);
const char *timeoutPF = "globalThis.setTimeout = os.setTimeout\n"
"globalThis.sleep = os.sleep";
eval_buf(ctx, timeoutPF, strlen(timeoutPF), "<input>", JS_EVAL_TYPE_MODULE);
const char *stdGlobals = "globalThis.urlGet = std.urlGet\n"
"globalThis.global = globalThis;\n"
"globalThis.setTimeout = os.setTimeout\n"
"globalThis.clearTimeout = os.clearTimeout\n"
"globalThis.sleep = os.sleep\n"
"globalThis.urlGet = std.urlGet\n"
"globalThis.loadFile = std.loadFile\n"
"globalThis.printf = std.printf\n"
"globalThis.evalFile = std.loadScript\n"
"globalThis.getURL = std.urlGet";
eval_buf(ctx, stdGlobals, strlen(stdGlobals), "<input>", JS_EVAL_TYPE_MODULE);
eval_buf(ctx, pf, strlen(pf), "<input>", JS_EVAL_TYPE_MODULE);
for(i = 0; i < include_count; i++) {