-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: icedterminal <[email protected]>
- Loading branch information
1 parent
f57e5bb
commit f014cb6
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule nginx
updated
28 files
Submodule njs
updated
24 files
+14 −0 | README.md | |
+22 −1 | auto/quickjs | |
+0 −11 | external/njs_fs_module.c | |
+10 −112 | external/njs_shell.c | |
+7 −11 | external/njs_xml_module.c | |
+1 −0 | nginx/ngx_http_js_module.c | |
+13 −0 | nginx/ngx_js.c | |
+4 −0 | nginx/ngx_js.h | |
+1,312 −0 | nginx/ngx_js_shared_dict.c | |
+84 −0 | nginx/t/js_process.t | |
+46 −14 | nginx/t/js_shared_dict.t | |
+108 −0 | nginx/t/stream_js_process.t | |
+0 −2 | nginx/t/stream_js_shared_dict.t | |
+2 −2 | src/njs.h | |
+95 −0 | src/njs_builtin.c | |
+14 −23 | src/njs_promise.c | |
+2 −2 | src/njs_promise.h | |
+2 −4 | src/njs_vmcode.c | |
+263 −39 | src/qjs.c | |
+1 −1 | src/qjs.h | |
+34 −0 | test/js/promise_s27.t.js | |
+3 −0 | test/shell_test.exp | |
+2 −0 | test/shell_test_njs.exp | |
+5 −0 | ts/njs_core.d.ts |