about summary refs log tree commit diff stats
path: root/lib/quickjs
Commit message (Expand)AuthorAgeFilesLines
* Prevent UB on memcpy and floating point conversionsCharlie Gordon2024-03-135-18/+26
* 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-022-0/+12
* Improve surrogate handling readabilityCharlie Gordon2024-03-023-124/+150
* Rename regex flag and field utf16 -> unicodeCharlie Gordon2024-03-023-61/+62
* Fix big endian serializationCharlie Gordon2024-03-022-61/+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-022-78/+96
* 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-0214-760/+760
* 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-022-7/+6
* simplified and fixed arrow function parsing (github issue #226)Fabrice Bellard2024-03-021-46/+57
* new releaseFabrice Bellard2024-03-021-1/+1
* fixed JS_GetScriptOrModuleName() in direct or indirect eval codeFabrice Bellard2024-03-021-11/+24
* quickjs: reduce diff with upstreambptato2024-03-022-61/+18
* fix bug in prev commitbptato2024-02-051-1/+1
* regex: fix 8-bit narrow strings in JSbptato2024-02-051-25/+39
* quickjs: patch libunicode.h to use LRE_BOOLbptato2024-01-151-2/+2
* native cosmopolitan buildFabrice Bellard2024-01-111-16/+5
* more portable and Windows version for getTimezoneOffset() (github issue #122)Fabrice Bellard2024-01-111-9/+24
* regexp: fixed the zero advance logic in quantifiers (github issue #158)Fabrice Bellard2024-01-112-74/+42
* optional chaining fixes (github issue #103)Fabrice Bellard2024-01-112-7/+111
* fixed Date.toLocaleString() (kuzmas)Fabrice Bellard2024-01-111-1/+1
* fixed regexp case insensitive flagFabrice Bellard2024-01-114-196/+374
* 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-112-4/+28
* added a comment for non-initialized warning in Valgrind (github issue #153)Fabrice Bellard2024-01-111-0/+10
* added 'in' operator for private fieldsFabrice Bellard2024-01-112-75/+162
* class static block (initial patch by bnoordhuis)Fabrice Bellard2024-01-111-17/+76
* fixed crash in JS_DumpMemoryUsage (github issue #65)Fabrice Bellard2024-01-111-2/+2
* allow 'await' in the REPL and added os.sleepAsync()Fabrice Bellard2024-01-112-2/+5