summaryrefslogtreecommitdiff
path: root/quickjs.c
Commit message (Collapse)AuthorAge
...
* added 'at' in Array.prototype[Symbol.unscopables]Fabrice Bellard2025-04-16
|
* optimized and fixed JS_AtomIsNumericIndex1(): 'NaN' is also a numberFabrice Bellard2025-04-16
|
* fixed 'with' access by adding HasPropery() calls - removed unused ↵Fabrice Bellard2025-04-16
| | | | 'with_get_ref_undef' opcode
* fixed destructuring operation order when defining variables - optimized more ↵Fabrice Bellard2025-04-16
| | | | cases of variable definition in destructuring
* fixed destructuring parsing: do it only in assignment expressionsFabrice Bellard2025-04-16
|
* more ToPropertyKey ordering changesFabrice Bellard2025-04-15
|
* spec update: ToPropertyKey() is now done after the evaluation of the ↵Fabrice Bellard2025-04-15
| | | | expression in assignments
* String.prototype.localeCompare is added in JS_AddIntrinsicStringNormalize() ↵Fabrice Bellard2025-04-14
| | | | as it requires unicode normalization
* added column number in error messages - simplified parserFabrice Bellard2025-04-14
|
* optimized js_parse_class_default_ctor() (bnoordhuis)Fabrice Bellard2025-04-12
|
* fixed DUMP_BYTECODEFabrice Bellard2025-04-12
|
* fixed HTML comments (chqrlie)Fabrice Bellard2025-04-12
|
* - removed the 'use strip' extensionFabrice Bellard2025-04-12
| | | | | | - removed the JS_EVAL_FLAG_STRIP eval flag and replaced it with JS_SetStripInfo() which has simpler semantics. - qjs: added the '-s' and '--strip-source' options - qjsc: added the '-s' and '--keep-source' options
* indent fixFabrice Bellard2025-04-10
|
* workaround for #282Fabrice Bellard2025-04-10
|
* Fix exporting destructured variables (saghul) (#382)Fabrice Bellard2025-04-10
|
* fixed class field named get or setFabrice Bellard2025-04-10
|
* changed js_throw_type_error ES5 workaround to be more compatible with test262Fabrice Bellard2025-04-10
|
* fixed the handling of unicode identifiersFabrice Bellard2025-04-10
|
* fixed break statement in the presence of labels (bnoordhuis) (#275)Fabrice Bellard2025-04-07
|
* added JS_GetAnyOpaque() (oleavr)Fabrice Bellard2025-04-07
|
* fixed buffer overflow in BJSON String and BigInt reader (#399)Fabrice Bellard2025-04-07
|
* fixed and improved Map/Set hashingFabrice Bellard2025-04-07
|
* removed unused slack in hash_map_resize() (saghul)Fabrice Bellard2025-04-07
|
* Fix UB in BigInt left shift (saghul)Fabrice Bellard2025-04-07
|
* Fix leak in BigInt unary plus (saghul)Fabrice Bellard2025-04-07
|
* fixed weakmap gc (#398)Fabrice Bellard2025-04-07
|
* fixed module cyclic imports (#329)Fabrice Bellard2025-04-05
|
* workaround for overflow test in JS_GetOwnPropertyNamesInternal() (#111)Fabrice Bellard2025-04-05
|
* 'undefined' is a valid let/const variable name. It gives a SyntaxError at ↵Fabrice Bellard2025-04-05
| | | | top level because it is already defined (#370)
* added forgotten js_weakref_is_live() testsFabrice Bellard2025-04-05
|
* avoid freeing an object structure in js_weakref_free() if it is about to be ↵Fabrice Bellard2025-04-05
| | | | freed in free_zero_refcount()
* reworked weak references so that cycles are (hopefully) correctly handled - ↵Fabrice Bellard2025-04-05
| | | | added Symbol as WeakMap key, WeakRef and FinalizationRegistry
* fixed eval with empty argument scope (#249)Fabrice Bellard2025-03-31
|
* removed useless printf() (#257)Fabrice Bellard2025-03-31
|
* ensure that JS_IteratorNext() returns JS_UNDEFINED when done = TRUE (#394)Fabrice Bellard2025-03-31
|
* fixed exception handling in AsyncFromSyncIterator and async for ofFabrice Bellard2025-03-28
|
* fixed typed array set operation when obj != receiverFabrice Bellard2025-03-27
|
* fixed set_date_field()Fabrice Bellard2025-03-27
|
* removed memory leak in string padding (issue #274)Fabrice Bellard2025-03-27
|
* more use of js_new_string8 - inlined JS_NewString() (initial patch by ↵Fabrice Bellard2025-03-25
| | | | Charlie Gordon)
* added string ropes for faster concatenation of long strings (issue #67)Fabrice Bellard2025-03-25
|
* reduced memory usage of Map hash tableFabrice Bellard2025-03-22
|
* fixed hash_map_resize() - added Map/WeakMap in microbenchFabrice Bellard2025-03-22
|
* simplified and fixed backtrace_barrier (#306)Fabrice Bellard2025-03-20
|
* added new dtoa library to print and parse float64 numbers. It is necessary ↵Fabrice Bellard2025-03-19
| | | | to fix corner cases (e.g. radix != 10) and to have correct behavior regardless of the libc implementation.
* msan fix (#389)Fabrice Bellard2025-03-19
|
* simplified js_bigint_from_float64()Fabrice Bellard2025-03-19
|
* fixed BigInt hashing - removed -fno-bigint in qjsc and ↵Fabrice Bellard2025-03-19
| | | | JS_AddIntrinsicBigInt() (BigInt is now considered as a base object)
* fixed JS_DumpValue() for BigIntFabrice Bellard2025-03-19
|