about summary refs log tree commit diff stats
path: root/lib/quickjs/quickjs.c
Commit message (Expand)AuthorAgeFilesLines
* quickjs: fix member accesses for non-decimal number literalsbptato2024-04-141-1/+2
* Fix endianness handling in `js_dataview_getValue` / `js_dataview_setValue`Charlie Gordon2024-04-141-8/+8
* Improve error handlingCharlie Gordon2024-04-141-8/+17
* Improve `JSON.stringify`Charlie Gordon2024-04-141-39/+43
* Use more explicit magic values for array methodsCharlie Gordon2024-04-141-26/+24
* Simplify redundant initializers for `JS_NewBool()`Charlie Gordon2024-04-141-18/+17
* Fix compilation with -DCONFIG_BIGNUMCharlie Gordon2024-04-141-32/+41
* Improve Date.parse, small fixesCharlie Gordon2024-04-141-58/+73
* Revert bignum build fixesbptato2024-04-141-8/+0
* quickjs: fix OpenBSD compilationbptato2024-04-021-1/+1
* Prevent UB on memcpy and floating point conversionsCharlie Gordon2024-03-131-5/+8
* Improve Date.parseCharlie Gordon2024-03-131-31/+106
* man: rewrite in Nimbptato2024-03-131-0/+4
* quickjs: fix build without CONFIG_BIGNUMbptato2024-03-021-0/+8
* Improve Number.prototype.toString for radix other than 10Charlie Gordon2024-03-021-9/+98
* Improve Date.parseCharlie Gordon2024-03-021-224/+305
* Fix Map hash bugCharlie Gordon2024-03-021-2/+2
* Rewrite `set_date_fields` to match the ECMA specificationCharlie Gordon2024-03-021-28/+52
* Add C API function JS_GetClassID()Tyler Rockwood2024-03-021-0/+9
* Improve surrogate handling readabilityCharlie Gordon2024-03-021-42/+34
* Rename regex flag and field utf16 -> unicodeCharlie Gordon2024-03-021-4/+4
* Fix big endian serializationCharlie Gordon2024-03-021-58/+58
* Fix UB signed integer overflow in js_math_imulCharlie Gordon2024-03-021-5/+7
* Fix UB left shift of negative numberBen Noordhuis2024-03-021-1/+1
* Remove unnecessary ssize_t posix-ismBen Noordhuis2024-03-021-1/+1
* Improve string concatenation hackCharlie Gordon2024-03-021-77/+95
* Reverse e140122202cc24728b394f8f90fa2f4a2d7c397eCharlie Gordon2024-03-021-2/+0
* Fix test262 errorCharlie Gordon2024-03-021-2/+8
* Fix sloppy mode arguments uninitialized value useBen Noordhuis2024-03-021-0/+2
* Remove unsafe sprintf() and strcat() callsBen Noordhuis2024-03-021-22/+24
* Fix undefined behavior (UBSAN)Charlie Gordon2024-03-021-2/+4
* Fix UB in js_dtoa1Saúl Ibarra Corretgé2024-03-021-1/+3
* Fix runtime bugsCharlie Gordon2024-03-021-13/+9
* Strip trailing spacesCharlie Gordon2024-03-021-376/+376
* avoid using INT64_MAX in double comparisons because it cannot be exactly repr...Fabrice Bellard2024-03-021-2/+3
* fixed Promise return in the REPL by using a wrapper object in async std.evalS...Fabrice Bellard2024-03-021-2/+14
* export JS_GetModuleNamespace (github issue #34)Fabrice Bellard2024-03-021-7/+5
* simplified and fixed arrow function parsing (github issue #226)Fabrice Bellard2024-03-021-46/+57
* fixed JS_GetScriptOrModuleName() in direct or indirect eval codeFabrice Bellard2024-03-021-11/+24
* quickjs: reduce diff with upstreambptato2024-03-021-54/+16
* native cosmopolitan buildFabrice Bellard2024-01-111-16/+5
* more portable and Windows version for getTimezoneOffset() (github issue #122)Fabrice Bellard2024-01-111-9/+24
* optional chaining fixes (github issue #103)Fabrice Bellard2024-01-111-7/+109
* fixed Date.toLocaleString() (kuzmas)Fabrice Bellard2024-01-111-1/+1
* fixed next token parsing after a function definition (github issue #77)Fabrice Bellard2024-01-111-27/+51
* fixed class name init in static initializersFabrice Bellard2024-01-111-17/+10
* avoid potentially undefined behavior and make valgrind happy (bnoordhuis) (gi...Fabrice Bellard2024-01-111-14/+12
* make for in faster and spec compliant (github issue #137)Fabrice Bellard2024-01-111-86/+143
* fixed test262: derived-this-uninitialized-realm.jsFabrice Bellard2024-01-111-4/+24
* added a comment for non-initialized warning in Valgrind (github issue #153)Fabrice Bellard2024-01-111-0/+10