-
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
6862531
commit abc86ea
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule nginx
updated
24 files
Submodule njs
updated
17 files
+25 −0 | CHANGES | |
+5 −2 | nginx/ngx_http_js_module.c | |
+84 −81 | nginx/ngx_js.c | |
+0 −2 | nginx/ngx_js.h | |
+20 −2 | nginx/t/js_return.t | |
+19 −2 | nginx/t/js_subrequests.t | |
+2 −0 | src/njs.h | |
+4 −0 | src/njs_builtin.c | |
+219 −4 | src/njs_object.c | |
+1 −0 | src/njs_object.h | |
+1 −0 | src/njs_object_prop.c | |
+14 −23 | src/njs_promise.c | |
+2 −2 | src/njs_promise.h | |
+41 −10 | src/njs_vm.c | |
+4 −4 | src/njs_vmcode.c | |
+61 −2 | src/test/njs_unit_test.c | |
+34 −0 | test/js/promise_s27.t.js |