1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:57:35 +00:00

LibJS: Make Array.prototype.push() generic

This commit is contained in:
Linus Groh 2020-05-22 13:20:53 +01:00 committed by Andreas Kling
parent 9f7a6e116a
commit 4334a1b208
4 changed files with 42 additions and 12 deletions

View file

@ -43,9 +43,6 @@
#include <LibJS/Runtime/Value.h>
#include <math.h>
// 2 ** 53 - 1
#define MAX_ARRAY_LIKE_INDEX 9007199254740991.0
namespace JS {
bool Value::is_array() const
@ -261,7 +258,7 @@ i32 Value::as_i32() const
size_t Value::as_size_t() const
{
ASSERT(as_double() >= 0);
return min((double)(i32)as_double(), MAX_ARRAY_LIKE_INDEX);
return min((double)as_i32(), MAX_ARRAY_LIKE_INDEX);
}
double Value::to_double(Interpreter& interpreter) const