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
Currently, the array constructor takes ecma_length_t, which is an uint16, as it's length argument, even though the length of an array can be an uint32. The two should be compatible, so we should either change ecma_length_t to be uint32, or change the array constructor to take uint32 for length.