Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unnecessary assertion in the ArrayObject's setArrayLength func…
…tion There's no need to put an assertion there because: - The ArrayObject's length can be changed even when it's not extensible, it just fills the Array with empty values. - Modifying the length of an ArrayObject should not throw an error, the only time it should when an element is pushed to a non-extensible ArrayObject. Fixes #33 Signed-off-by: Daniel Balla [email protected]
- Loading branch information