-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump deps/quickjs from `3b45d15` to `d378a9f` Bumps [deps/quickjs](https://github.com/bellard/quickjs) from `3b45d15` to `d378a9f`. - [Commits](bellard/quickjs@3b45d15...d378a9f) --- updated-dependencies: - dependency-name: deps/quickjs dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update QuickJS Static Library For Windows (#169) Co-authored-by: buke <1013738+buke@users.noreply.github.com> * Update QuickJS Static Library For Linux (#170) Co-authored-by: buke <1013738+buke@users.noreply.github.com> * Update QuickJS Static Library For Darwin (#168) Co-authored-by: buke <1013738+buke@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: buke <1013738+buke@users.noreply.github.com>
- Loading branch information
1 parent
b1c165c
commit f562baf
Showing
6 changed files
with
1 addition
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Submodule quickjs
updated
20 files
+27 −1 | Makefile | |
+6 −0 | compat/test-closefrom.c | |
+27 −0 | fuzz/README | |
+257 −0 | fuzz/fuzz.dict | |
+62 −0 | fuzz/fuzz_common.c | |
+22 −0 | fuzz/fuzz_common.h | |
+93 −0 | fuzz/fuzz_compile.c | |
+49 −0 | fuzz/fuzz_eval.c | |
+59 −0 | fuzz/fuzz_regexp.c | |
+24 −0 | fuzz/generate_dict.js | |
+2 −27 | libregexp.c | |
+3 −40 | libregexp.h | |
+116 −45 | libunicode-table.h | |
+126 −4 | libunicode.c | |
+79 −24 | libunicode.h | |
+22 −4 | quickjs-libc.c | |
+141 −66 | quickjs.c | |
+23 −0 | quickjs.h | |
+10 −2 | tests/test_language.js | |
+92 −36 | unicode_gen.c |