QuickJS, the Next Generation: a mighty JavaScript engine
Find a file
Ben Noordhuis e49da8e96f
Unbreak microbench, add os.now() (#93)
The removal of the high-precision but non-standard clock source in
commit 5af98ca broke microbench because Date.now() is not granular
enough for the benchmark runner to make forward progress.

This commit adds a new method to the os module that returns time
with microsecond precision.
2023-11-19 17:26:25 +01:00
.github/workflows Add Linux 32bits target to CI 2023-11-17 23:55:22 +01:00
doc Drop non-standard JSON extension 2023-11-08 22:14:25 +01:00
examples Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
test262@c1281dba45 Enable test262 on CI (#11) 2023-11-04 10:27:57 +01:00
tests Unbreak microbench, add os.now() (#93) 2023-11-19 17:26:25 +01:00
.gitignore Update .gitignore 2023-11-17 23:01:40 +01:00
.gitmodules Enable test262 on CI (#11) 2023-11-04 10:27:57 +01:00
CMakeLists.txt Add -DBUILD_QJS_LIBC option 2023-11-18 12:34:59 +01:00
cutils.c Remove dead code (#87) 2023-11-18 19:14:24 +01:00
cutils.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
libbf.c Remove dead code (#87) 2023-11-18 19:14:24 +01:00
libbf.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
libregexp-opcode.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
libregexp.c Implement extended named capture group identifiers (#90) 2023-11-19 11:01:38 +01:00
libregexp.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
libunicode-table.h Update to Unicode 15.0.0 (#89) 2023-11-18 22:29:53 +01:00
libunicode.c Remove dead code (#87) 2023-11-18 19:14:24 +01:00
libunicode.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
LICENSE Add copyright notices (#51) 2023-11-12 22:42:07 +01:00
list.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
Makefile Refactor build system to use CMake only 2023-11-17 13:10:18 +01:00
qjs.c Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
qjsc.c Drop "LTO mode" from qjsc 2023-11-18 00:31:31 +01:00
quickjs-atom.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
quickjs-libc.c Unbreak microbench, add os.now() (#93) 2023-11-19 17:26:25 +01:00
quickjs-libc.h Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
quickjs-opcode.h Add fused get_loc0_loc1 opcode (#55) 2023-11-13 00:54:13 +01:00
quickjs.c Retrieve RegExp 'g' flag in spec conformant way (#92) 2023-11-19 17:26:03 +01:00
quickjs.h Add performance.{now,timeOrigin} 2023-11-18 11:16:35 +01:00
README.md Remove old project files 2023-11-17 23:55:43 +01:00
repl.js Remove BigFloat (#31) 2023-11-08 22:23:06 +01:00
run-test262.c Remove trailing whitespace (#46) 2023-11-12 10:01:40 +01:00
test262.conf Implement Array.prototype.findLast{Index} (#70) 2023-11-17 11:54:21 +01:00
test262_errors.txt Retrieve RegExp 'g' flag in spec conformant way (#92) 2023-11-19 17:26:03 +01:00
unicode_download.sh updated to Unicode 14.0.0 2022-03-06 19:00:24 +01:00
unicode_gen.c Remove dead code (#87) 2023-11-18 19:14:24 +01:00
unicode_gen_def.h Update to Unicode 15.0.0 (#89) 2023-11-18 22:29:53 +01:00

QuickJS - A mighty JavaScript engine

Friendly QuickJS fork focused on reigniting the project.

🚧 Work in progress.