-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #400 from richarddd/update/qjs
Update QJS
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule quickjs
updated
27 files
+11 −30 | .github/workflows/ci.yml | |
+26 −132 | .github/workflows/release.yml | |
+3 −0 | .gitignore | |
+6 −1 | CMakeLists.txt | |
+4 −2 | Makefile | |
+2 −2 | cutils.c | |
+36 −2 | docs/docs/cli.md | |
+4 −1 | docs/docs/diff.md | |
+4 −0 | docs/docs/projects.md | |
+4 −2 | docs/docs/stdlib.md | |
+10 −2 | gen/function_source.c | |
+10 −2 | gen/hello.c | |
+10 −2 | gen/hello_module.c | |
+538 −537 | gen/repl.c | |
+310 −0 | gen/standalone.c | |
+10 −2 | gen/test_fib.c | |
+161 −12 | qjs.c | |
+11 −3 | qjsc.c | |
+85 −27 | quickjs-libc.c | |
+332 −386 | quickjs.c | |
+2 −1 | quickjs.h | |
+21 −22 | repl.js | |
+7 −1 | run-test262.c | |
+123 −0 | standalone.js | |
+0 −24 | test262_errors.txt | |
+19 −0 | tests/bug741.js | |
+33 −0 | tests/test_builtin.js |