gitextract_qmew98ht/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── Changelog ├── LICENSE ├── Makefile ├── TODO ├── VERSION ├── compat/ │ └── test-closefrom.c ├── cutils.c ├── cutils.h ├── doc/ │ └── quickjs.texi ├── dtoa.c ├── dtoa.h ├── examples/ │ ├── fib.c │ ├── fib_module.js │ ├── hello.js │ ├── hello_module.js │ ├── message.json │ ├── pi_bigint.js │ ├── point.c │ ├── test_fib.js │ └── test_point.js ├── fuzz/ │ ├── README │ ├── fuzz.dict │ ├── fuzz_common.c │ ├── fuzz_common.h │ ├── fuzz_compile.c │ ├── fuzz_eval.c │ ├── fuzz_regexp.c │ └── generate_dict.js ├── libregexp-opcode.h ├── libregexp.c ├── libregexp.h ├── libunicode-table.h ├── libunicode.c ├── libunicode.h ├── list.h ├── qjs.c ├── qjsc.c ├── quickjs-atom.h ├── quickjs-libc.c ├── quickjs-libc.h ├── quickjs-opcode.h ├── quickjs.c ├── quickjs.h ├── readme-cosmo.txt ├── readme.txt ├── release.sh ├── repl.js ├── run-test262.c ├── test262.conf ├── test262o.conf ├── tests/ │ ├── assert.js │ ├── bjson.c │ ├── fixture_cyclic_import.js │ ├── microbench.js │ ├── test262.patch │ ├── test_bigint.js │ ├── test_bjson.js │ ├── test_builtin.js │ ├── test_closure.js │ ├── test_cyclic_import.js │ ├── test_language.js │ ├── test_loop.js │ ├── test_std.js │ ├── test_worker.js │ └── test_worker_module.js ├── unicode_download.sh ├── unicode_gen.c └── unicode_gen_def.h