You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
…formats, ... (#47)
* Fixed typed arrays' defineProperty and indexing. Fixesdop251#308.
* Fix Proxy creation panicing on target not callable
* Do not modify sb for variadic calls as it breaks local variables resolution. Instead place a marker on stack and use it to count the number of args. Fixesdop251#311.
* Support patterns in catch clause. See dop251#305
* Fixed the handling of Symbol properties in destructuring assignments. Fixesdop251#312.
* Ensure ToPropertyKey happens earlier when assigning computed keys. Fixesdop251#312.
* Aligned detached buffer semantics with the latest specs. Fixesdop251#315.
* More typed arrays fixes
* Fixed accessor and property key function names. Fixesdop251#314.
* Fixed possible panic when sorting non-standard arrays.
* Added nil-safety checks for values returned by get*() methods
* Fixed panics in parser on some invalid inputs. Fixesdop251#318.
* Arrow function (dop251#319)
* Implemented arrow functions. See dop251#304.
* Define the name property for anonymous functions (including arrow functions)
* Treat "arguments" as a lexical binding to match the latest specification
* Allow arrow functions to contain 'use strict' for simple parameter lists. Fixesdop251#323.
* Fixed argument variable reference resolution in stashless functions
* Treat date-only formats as UTC and date-time as local timezone. Added support for additional datetime formats. Fixesdop251#281, fixesdop251#292.
* Use correct createArgsRest variant when arguments are not in stash. Fixesdop251#327
* Fixed formatting for go 1.17
* Report 'length' as own property for Go slices. Fixesdop251#328.
If you enable the
sec-integer-indexed-exotic-objects-defineownproperty-p-desc
you will see that a bunch of tests are failing such as test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/desc-value-throws.js which panics with (removed irrelevant parts):From my quick investigation
goja/typedarrays.go
Line 515 in a7a3a13
this is the line that makes
v
to benil
. Whether that is an error in ToNumber or the previous creation of the property atgoja/typedarrays.go
Line 563 in a7a3a13
is ... a more complicated question
The text was updated successfully, but these errors were encountered: