summaryrefslogtreecommitdiff
path: root/quickjs.c
Commit message (Collapse)AuthorAge
...
* fixed Promise return in the REPL by using a wrapper object in async ↵Fabrice Bellard2024-02-03
| | | | std.evalScript() (github issue #231)
* export JS_GetModuleNamespace (github issue #34)Fabrice Bellard2024-01-27
|
* simplified and fixed arrow function parsing (github issue #226)Fabrice Bellard2024-01-27
|
* fixed JS_GetScriptOrModuleName() in direct or indirect eval codeFabrice Bellard2024-01-13
|
* native cosmopolitan buildFabrice Bellard2024-01-11
|
* more portable and Windows version for getTimezoneOffset() (github issue #122)Fabrice Bellard2024-01-11
|
* optional chaining fixes (github issue #103)Fabrice Bellard2024-01-09
|
* fixed Date.toLocaleString() (kuzmas)Fabrice Bellard2024-01-08
|
* fixed next token parsing after a function definition (github issue #77)Fabrice Bellard2024-01-08
|
* fixed class name init in static initializersFabrice Bellard2024-01-08
|
* avoid potentially undefined behavior and make valgrind happy (bnoordhuis) ↵Fabrice Bellard2024-01-08
| | | | (github issue #153)
* make for in faster and spec compliant (github issue #137)Fabrice Bellard2024-01-06
|
* fixed test262: derived-this-uninitialized-realm.jsFabrice Bellard2024-01-06
|
* added a comment for non-initialized warning in Valgrind (github issue #153)Fabrice Bellard2024-01-06
|
* added 'in' operator for private fieldsFabrice Bellard2024-01-02
|
* class static block (initial patch by bnoordhuis)Fabrice Bellard2024-01-02
|
* fixed crash in JS_DumpMemoryUsage (github issue #65)Fabrice Bellard2024-01-02
|
* allow 'await' in the REPL and added os.sleepAsync()Fabrice Bellard2024-01-02
|
* make JS_NewClassID thread safeFabrice Bellard2024-01-02
|
* added Error causeFabrice Bellard2024-01-02
|
* added os.now()Fabrice Bellard2023-12-27
|
* fixed JS module autodetection with shebang (github issue #91)Fabrice Bellard2023-12-27
|
* fixed crash when resizing property shapes in case of OOM (github issue #129)Fabrice Bellard2023-12-27
|
* fixed the garbage collection of async functions with closures (github issue ↵Fabrice Bellard2023-12-27
| | | | #156)
* removed memory leakFabrice Bellard2023-12-27
|
* added RegExp 'd' flag (bnoordhuis)Fabrice Bellard2023-12-27
|
* added Promise.withResolversFabrice Bellard2023-12-27
|
* added Array.prototype.{with,toReversed,toSpliced,toSorted} and ↵Fabrice Bellard2023-12-27
| | | | TypedArray.prototype.{with,toReversed,toSorted} (initial patch by bnoordhuis)
* added Object.groupBy and Map.groupBy (initial patch by bnoordhuis)Fabrice Bellard2023-12-27
|
* added String.prototype.isWellFormed and String.prototype.toWellFormedFabrice Bellard2023-12-27
|
* fixed detached TypedArray in sort()Fabrice Bellard2023-12-27
|
* top-level-await support - follow the spec in the implementation of the ↵Fabrice Bellard2023-12-27
| | | | module linking and evaluation to avoid errors with cycling module dependencies
* reduced JS_MAX_LOCAL_VARS (github issue #123)Fabrice Bellard2023-12-22
|
* removed unused JSContext fieldFabrice Bellard2023-12-22
|
* use Unicode normalization in String.prototype.localeCompareFabrice Bellard2023-12-22
|
* 'for of' expression cannot start with 'async'Fabrice Bellard2023-12-22
|
* removed incorrect await in async yield*Fabrice Bellard2023-12-22
|
* fixed define own property with writable=false on module namespaceFabrice Bellard2023-12-22
|
* added container_of macroFabrice Bellard2023-12-22
|
* safer typed array finalizerFabrice Bellard2023-12-22
|
* fixed js_strtod with large integers (github issue #206)Fabrice Bellard2023-12-22
|
* fixed 'return' handling with 'yield' in 'for of' or with finally blocks ↵Fabrice Bellard2023-12-13
| | | | (gihub ticket #166)
* fixed async generator in case of exception in the implicit await in the ↵Fabrice Bellard2023-12-13
| | | | 'return' statement
* Fix AsyncGenerator.prototype.return error handling (bnoordhuis)Fabrice Bellard2023-12-13
|
* raise an error if a private method is added twice to an objectFabrice Bellard2023-12-13
|
* added Array.prototype.findLast{Index} and ↵Fabrice Bellard2023-12-09
| | | | TypeArray.prototype.findLast{index} (initial patch by bnoordhuis)
* fixed duplicate static private setter/getter testFabrice Bellard2023-12-09
|
* Symbol.species is no longer used in TypedArray constructor from a TypedArrayFabrice Bellard2023-12-09
|
* fixed delete super.x errorFabrice Bellard2023-12-09
|
* reworked set property and fixed corner cases of typed array set propertyFabrice Bellard2023-12-09
|