This commit merges JS_SetPropertyGeneric into JS_SetPropertyInternal2
and obsoletes commit b51b510 and partially obsoletes commit 8baafc4;
detachment and negative zero handling now fall out naturally.
This commit is contained in:
Ben Noordhuis 2023-12-15 00:03:18 +01:00 committed by GitHub
parent ba8b80f112
commit 35e6bfceb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 124 additions and 232 deletions

View file

@ -77,7 +77,6 @@ DEF(await, "await")
/* empty string */ /* empty string */
DEF(empty_string, "") DEF(empty_string, "")
DEF(negative_zero, "-0")
/* identifiers */ /* identifiers */
DEF(length, "length") DEF(length, "length")
DEF(fileName, "fileName") DEF(fileName, "fileName")

345
quickjs.c
View file

@ -8233,174 +8233,46 @@ static void js_free_desc(JSContext *ctx, JSPropertyDescriptor *desc)
JS_FreeValue(ctx, desc->value); JS_FreeValue(ctx, desc->value);
} }
/* generic (and slower) version of JS_SetProperty() for
* Reflect.set(). 'obj' must be an object. */
// TODO(bnoordhuis) merge with JS_SetPropertyInternal2
static int JS_SetPropertyGeneric(JSContext *ctx,
JSValue obj, JSAtom prop,
JSValue val, JSValue this_obj,
int flags)
{
int ret;
JSPropertyDescriptor desc;
JSValue obj1;
JSObject *p;
obj1 = js_dup(obj);
for(;;) {
p = JS_VALUE_GET_OBJ(obj1);
if (p->is_exotic) {
const JSClassExoticMethods *em = ctx->rt->class_array[p->class_id].exotic;
if (em && em->set_property) {
ret = em->set_property(ctx, obj1, prop,
val, this_obj, flags);
JS_FreeValue(ctx, obj1);
JS_FreeValue(ctx, val);
return ret;
}
}
ret = JS_GetOwnPropertyInternal(ctx, &desc, p, prop);
if (ret < 0) {
JS_FreeValue(ctx, obj1);
JS_FreeValue(ctx, val);
return ret;
}
if (ret) {
if (desc.flags & JS_PROP_GETSET) {
JSObject *setter;
if (JS_IsUndefined(desc.setter))
setter = NULL;
else
setter = JS_VALUE_GET_OBJ(desc.setter);
ret = call_setter(ctx, setter, this_obj, val, flags);
JS_FreeValue(ctx, desc.getter);
JS_FreeValue(ctx, desc.setter);
JS_FreeValue(ctx, obj1);
return ret;
} else {
JS_FreeValue(ctx, desc.value);
if (!(desc.flags & JS_PROP_WRITABLE)) {
JS_FreeValue(ctx, obj1);
goto read_only_error;
}
}
break;
}
/* Note: at this point 'obj1' cannot be a proxy. XXX: may have
to check recursion */
obj1 = JS_GetPrototypeFree(ctx, obj1);
if (JS_IsNull(obj1))
break;
}
JS_FreeValue(ctx, obj1);
if (!JS_IsObject(this_obj)) {
JS_FreeValue(ctx, val);
return JS_ThrowTypeErrorOrFalse(ctx, flags, "receiver is not an object");
}
p = JS_VALUE_GET_OBJ(this_obj);
if (prop == JS_ATOM_negative_zero &&
p->class_id >= JS_CLASS_UINT8C_ARRAY &&
p->class_id <= JS_CLASS_FLOAT64_ARRAY) {
// per spec: CanonicalNumericIndexString("-0") evaluates to -0 and
// returns true but sets no property; side effects of evaluating
// the value should still be observable
val = JS_ToPrimitiveFree(ctx, val, HINT_NUMBER);
if (JS_IsException(val))
return -1;
JS_FreeValue(ctx, val);
return TRUE;
}
/* modify the property in this_obj if it already exists */
ret = JS_GetOwnPropertyInternal(ctx, &desc, p, prop);
if (ret < 0) {
JS_FreeValue(ctx, val);
return ret;
}
if (ret) {
if (desc.flags & JS_PROP_GETSET) {
JS_FreeValue(ctx, desc.getter);
JS_FreeValue(ctx, desc.setter);
JS_FreeValue(ctx, val);
return JS_ThrowTypeErrorOrFalse(ctx, flags, "setter is forbidden");
} else {
JS_FreeValue(ctx, desc.value);
if (!(desc.flags & JS_PROP_WRITABLE) ||
p->class_id == JS_CLASS_MODULE_NS) {
read_only_error:
JS_FreeValue(ctx, val);
return JS_ThrowTypeErrorReadOnly(ctx, flags, prop);
}
}
ret = JS_DefineProperty(ctx, this_obj, prop, val,
JS_UNDEFINED, JS_UNDEFINED,
JS_PROP_HAS_VALUE);
JS_FreeValue(ctx, val);
return ret;
}
ret = JS_CreateProperty(ctx, p, prop, val, JS_UNDEFINED, JS_UNDEFINED,
flags |
JS_PROP_HAS_VALUE |
JS_PROP_HAS_ENUMERABLE |
JS_PROP_HAS_WRITABLE |
JS_PROP_HAS_CONFIGURABLE |
JS_PROP_C_W_E);
JS_FreeValue(ctx, val);
return ret;
}
/* return -1 in case of exception or TRUE or FALSE. Warning: 'val' is /* return -1 in case of exception or TRUE or FALSE. Warning: 'val' is
freed by the function. 'flags' is a bitmask of JS_PROP_NO_ADD, freed by the function. 'flags' is a bitmask of JS_PROP_NO_ADD,
JS_PROP_THROW or JS_PROP_THROW_STRICT. If JS_PROP_NO_ADD is set, JS_PROP_THROW or JS_PROP_THROW_STRICT. If JS_PROP_NO_ADD is set,
the new property is not added and an error is raised. */ the new property is not added and an error is raised.
int JS_SetPropertyInternal2(JSContext *ctx, JSValue this_obj, 'obj' must be an object when obj != this_obj.
JSAtom prop, JSValue val, int flags, */
JSInlineCache *ic) int JS_SetPropertyInternal2(JSContext *ctx, JSValue obj,
JSAtom prop, JSValue val, JSValue this_obj,
int flags, JSInlineCache *ic)
{ {
JSObject *p, *p1; JSObject *p, *p1;
JSShapeProperty *prs; JSShapeProperty *prs;
JSProperty *pr; JSProperty *pr;
uint32_t tag;
JSPropertyDescriptor desc; JSPropertyDescriptor desc;
int ret; int ret;
uint32_t offset = 0; uint32_t offset = 0;
tag = JS_VALUE_GET_TAG(this_obj);
if (unlikely(tag != JS_TAG_OBJECT)) { switch(JS_VALUE_GET_TAG(this_obj)) {
switch(tag) { case JS_TAG_NULL:
case JS_TAG_NULL: JS_ThrowTypeErrorAtom(ctx, "cannot set property '%s' of null", prop);
JS_FreeValue(ctx, val); goto fail;
JS_ThrowTypeErrorAtom(ctx, "cannot set property '%s' of null", prop); case JS_TAG_UNDEFINED:
return -1; JS_ThrowTypeErrorAtom(ctx, "cannot set property '%s' of undefined", prop);
case JS_TAG_UNDEFINED: goto fail;
JS_FreeValue(ctx, val); case JS_TAG_OBJECT:
JS_ThrowTypeErrorAtom(ctx, "cannot set property '%s' of undefined", prop); p = JS_VALUE_GET_OBJ(this_obj);
return -1; p1 = JS_VALUE_GET_OBJ(obj);
default: if (p == p1)
/* even on a primitive type we can have setters on the prototype */ break;
p = NULL; goto retry2;
p1 = JS_VALUE_GET_OBJ(JS_GetPrototypePrimitive(ctx, this_obj)); default:
goto prototype_lookup; if (JS_VALUE_GET_TAG(obj) != JS_TAG_OBJECT)
} obj = JS_GetPrototypePrimitive(ctx, obj);
} p = NULL;
p = JS_VALUE_GET_OBJ(this_obj); p1 = JS_VALUE_GET_OBJ(obj);
if (prop == JS_ATOM_negative_zero && goto prototype_lookup;
p->class_id >= JS_CLASS_UINT8C_ARRAY &&
p->class_id <= JS_CLASS_FLOAT64_ARRAY) {
// per spec: CanonicalNumericIndexString("-0") evaluates to -0 and
// returns true but sets no property; side effects of evaluating
// the value should still be observable
val = JS_ToPrimitiveFree(ctx, val, HINT_NUMBER);
if (JS_IsException(val))
return -1;
JS_FreeValue(ctx, val);
return TRUE;
} }
retry: retry:
prs = find_own_property_ic(&pr, p, prop, &offset); prs = find_own_property_ic(&pr, p1, prop, &offset);
if (prs) { if (prs) {
if (likely((prs->flags & (JS_PROP_TMASK | JS_PROP_WRITABLE | if (likely((prs->flags & (JS_PROP_TMASK | JS_PROP_WRITABLE |
JS_PROP_LENGTH)) == JS_PROP_WRITABLE)) { JS_PROP_LENGTH)) == JS_PROP_WRITABLE)) {
@ -8427,17 +8299,14 @@ retry:
return TRUE; return TRUE;
} else if ((prs->flags & JS_PROP_TMASK) == JS_PROP_AUTOINIT) { } else if ((prs->flags & JS_PROP_TMASK) == JS_PROP_AUTOINIT) {
/* Instantiate property and retry (potentially useless) */ /* Instantiate property and retry (potentially useless) */
if (JS_AutoInitProperty(ctx, p, prop, pr, prs)) { if (JS_AutoInitProperty(ctx, p, prop, pr, prs))
JS_FreeValue(ctx, val); goto fail;
return -1;
}
goto retry; goto retry;
} else { } else {
goto read_only_prop; goto read_only_prop;
} }
} }
p1 = p;
for(;;) { for(;;) {
if (p1->is_exotic) { if (p1->is_exotic) {
if (p1->fast_array) { if (p1->fast_array) {
@ -8456,19 +8325,22 @@ retry:
p1->class_id <= JS_CLASS_FLOAT64_ARRAY) { p1->class_id <= JS_CLASS_FLOAT64_ARRAY) {
ret = JS_AtomIsNumericIndex(ctx, prop); ret = JS_AtomIsNumericIndex(ctx, prop);
if (ret != 0) { if (ret != 0) {
if (ret < 0) { if (ret < 0)
JS_FreeValue(ctx, val); goto fail;
return -1;
}
typed_array_oob: typed_array_oob:
val = JS_ToNumberFree(ctx, val); // per spec: evaluate value for side effects
JS_FreeValue(ctx, val); if (p1->class_id == JS_CLASS_BIG_INT64_ARRAY ||
if (JS_IsException(val)) p1->class_id == JS_CLASS_BIG_UINT64_ARRAY) {
return -1; int64_t v;
if (typed_array_is_detached(ctx, p1)) if (JS_ToBigInt64Free(ctx, &v, val))
if (!(flags & JS_PROP_DEFINE_PROPERTY)) return -1;
return FALSE; // per spec: no OOB exception } else {
return JS_ThrowTypeErrorOrFalse(ctx, flags, "out-of-bound numeric index"); val = JS_ToNumberFree(ctx, val);
JS_FreeValue(ctx, val);
if (JS_IsException(val))
return -1;
}
return TRUE;
} }
} }
} else { } else {
@ -8490,10 +8362,8 @@ retry:
ret = em->get_own_property(ctx, &desc, ret = em->get_own_property(ctx, &desc,
obj1, prop); obj1, prop);
JS_FreeValue(ctx, obj1); JS_FreeValue(ctx, obj1);
if (ret < 0) { if (ret < 0)
JS_FreeValue(ctx, val); goto fail;
return ret;
}
if (ret) { if (ret) {
if (desc.flags & JS_PROP_GETSET) { if (desc.flags & JS_PROP_GETSET) {
JSObject *setter; JSObject *setter;
@ -8540,66 +8410,93 @@ retry:
return -1; return -1;
goto retry2; goto retry2;
} else if (!(prs->flags & JS_PROP_WRITABLE)) { } else if (!(prs->flags & JS_PROP_WRITABLE)) {
read_only_prop: goto read_only_prop;
JS_FreeValue(ctx, val);
return JS_ThrowTypeErrorReadOnly(ctx, flags, prop);
} }
} }
} }
if (unlikely(flags & JS_PROP_NO_ADD)) { if (unlikely(flags & JS_PROP_NO_ADD)) {
JS_FreeValue(ctx, val);
JS_ThrowReferenceErrorNotDefined(ctx, prop); JS_ThrowReferenceErrorNotDefined(ctx, prop);
return -1; goto fail;
} }
if (unlikely(!p)) { if (unlikely(!p)) {
JS_FreeValue(ctx, val); ret = JS_ThrowTypeErrorOrFalse(ctx, flags, "not an object");
return JS_ThrowTypeErrorOrFalse(ctx, flags, "not an object"); goto done;
} }
if (unlikely(!p->extensible)) { if (unlikely(!p->extensible)) {
JS_FreeValue(ctx, val); ret = JS_ThrowTypeErrorOrFalse(ctx, flags, "object is not extensible");
return JS_ThrowTypeErrorOrFalse(ctx, flags, "object is not extensible"); goto done;
} }
if (p->is_exotic) { if (p == JS_VALUE_GET_OBJ(obj)) {
if (p->class_id == JS_CLASS_ARRAY && p->fast_array && if (p->is_exotic) {
__JS_AtomIsTaggedInt(prop)) { if (p->class_id == JS_CLASS_ARRAY && p->fast_array &&
uint32_t idx = __JS_AtomToUInt32(prop); __JS_AtomIsTaggedInt(prop)) {
if (idx == p->u.array.count) { uint32_t idx = __JS_AtomToUInt32(prop);
/* fast case */ if (idx == p->u.array.count) {
return add_fast_array_element(ctx, p, val, flags); /* fast case */
} else { return add_fast_array_element(ctx, p, val, flags);
goto generic_create_prop; }
} }
goto generic_create_prop;
} else { } else {
generic_create_prop: pr = add_property(ctx, p, prop, JS_PROP_C_W_E);
ret = JS_CreateProperty(ctx, p, prop, val, JS_UNDEFINED, JS_UNDEFINED, if (!pr)
flags | goto fail;
JS_PROP_HAS_VALUE | pr->u.value = val;
JS_PROP_HAS_ENUMERABLE | return TRUE;
JS_PROP_HAS_WRITABLE |
JS_PROP_HAS_CONFIGURABLE |
JS_PROP_C_W_E);
JS_FreeValue(ctx, val);
return ret;
} }
} }
pr = add_property(ctx, p, prop, JS_PROP_C_W_E); // TODO(bnoordhuis) return JSProperty slot and update in place
if (unlikely(!pr)) { // when plain property (not is_exotic/setter/etc.) to avoid
JS_FreeValue(ctx, val); // calling find_own_property() thrice?
return -1; ret = JS_GetOwnPropertyInternal(ctx, &desc, p, prop);
if (ret < 0)
goto fail;
if (ret) {
JS_FreeValue(ctx, desc.value);
if (desc.flags & JS_PROP_GETSET) {
JS_FreeValue(ctx, desc.getter);
JS_FreeValue(ctx, desc.setter);
ret = JS_ThrowTypeErrorOrFalse(ctx, flags, "setter is forbidden");
goto done;
} else if (!(desc.flags & JS_PROP_WRITABLE) ||
p->class_id == JS_CLASS_MODULE_NS) {
read_only_prop:
ret = JS_ThrowTypeErrorReadOnly(ctx, flags, prop);
goto done;
}
ret = JS_DefineProperty(ctx, this_obj, prop, val,
JS_UNDEFINED, JS_UNDEFINED,
JS_PROP_HAS_VALUE);
} else {
generic_create_prop:
ret = JS_CreateProperty(ctx, p, prop, val, JS_UNDEFINED, JS_UNDEFINED,
flags |
JS_PROP_HAS_VALUE |
JS_PROP_HAS_ENUMERABLE |
JS_PROP_HAS_WRITABLE |
JS_PROP_HAS_CONFIGURABLE |
JS_PROP_C_W_E);
} }
pr->u.value = val;
return TRUE; done:
JS_FreeValue(ctx, val);
return ret;
fail:
JS_FreeValue(ctx, val);
return -1;
} }
int JS_SetPropertyInternal(JSContext *ctx, JSValue this_obj, int JS_SetPropertyInternal(JSContext *ctx, JSValue this_obj,
JSAtom prop, JSValue val, int flags) JSAtom prop, JSValue val, int flags)
{ {
return JS_SetPropertyInternal2(ctx, this_obj, prop, val, flags, NULL); return JS_SetPropertyInternal2(ctx, this_obj, prop, val, this_obj,
flags, NULL);
} }
static int JS_SetPropertyInternalWithIC(JSContext *ctx, JSValue this_obj, static int JS_SetPropertyInternalWithIC(JSContext *ctx, JSValue this_obj,
@ -8617,7 +8514,8 @@ static int JS_SetPropertyInternalWithIC(JSContext *ctx, JSValue this_obj,
return TRUE; return TRUE;
} }
slow_path: slow_path:
return JS_SetPropertyInternal2(ctx, this_obj, prop, val, flags, ic); return JS_SetPropertyInternal2(ctx, this_obj, prop, val, this_obj,
flags, ic);
} }
/* flags can be JS_PROP_THROW or JS_PROP_THROW_STRICT */ /* flags can be JS_PROP_THROW or JS_PROP_THROW_STRICT */
@ -15755,7 +15653,10 @@ static JSValue JS_CallInternal(JSContext *caller_ctx, JSValue func_obj,
JSAtom atom; JSAtom atom;
atom = get_u32(pc); atom = get_u32(pc);
pc += 4; pc += 4;
ret = JS_SetPropertyInternal2(ctx, sp[-2], atom, sp[-1], JS_PROP_THROW_STRICT, ic); ret = JS_SetPropertyInternal2(ctx,
sp[-2], atom,
sp[-1], sp[-2],
JS_PROP_THROW_STRICT, ic);
JS_FreeValue(ctx, sp[-2]); JS_FreeValue(ctx, sp[-2]);
sp -= 2; sp -= 2;
if (unlikely(ret < 0)) if (unlikely(ret < 0))
@ -16076,8 +15977,10 @@ static JSValue JS_CallInternal(JSContext *caller_ctx, JSValue func_obj,
atom = JS_ValueToAtom(ctx, sp[-2]); atom = JS_ValueToAtom(ctx, sp[-2]);
if (unlikely(atom == JS_ATOM_NULL)) if (unlikely(atom == JS_ATOM_NULL))
goto exception; goto exception;
ret = JS_SetPropertyGeneric(ctx, sp[-3], atom, sp[-1], sp[-4], ret = JS_SetPropertyInternal2(ctx,
JS_PROP_THROW_STRICT); sp[-3], atom,
sp[-1], sp[-4],
JS_PROP_THROW_STRICT, NULL);
JS_FreeAtom(ctx, atom); JS_FreeAtom(ctx, atom);
JS_FreeValue(ctx, sp[-4]); JS_FreeValue(ctx, sp[-4]);
JS_FreeValue(ctx, sp[-3]); JS_FreeValue(ctx, sp[-3]);
@ -42920,8 +42823,8 @@ static JSValue js_reflect_set(JSContext *ctx, JSValue this_val,
atom = JS_ValueToAtom(ctx, prop); atom = JS_ValueToAtom(ctx, prop);
if (unlikely(atom == JS_ATOM_NULL)) if (unlikely(atom == JS_ATOM_NULL))
return JS_EXCEPTION; return JS_EXCEPTION;
ret = JS_SetPropertyGeneric(ctx, obj, atom, ret = JS_SetPropertyInternal2(ctx, obj, atom, js_dup(val), receiver,
js_dup(val), receiver, 0); 0, NULL);
JS_FreeAtom(ctx, atom); JS_FreeAtom(ctx, atom);
if (ret < 0) if (ret < 0)
return JS_EXCEPTION; return JS_EXCEPTION;
@ -43268,9 +43171,9 @@ static int js_proxy_set(JSContext *ctx, JSValue obj, JSAtom atom,
if (!s) if (!s)
return -1; return -1;
if (JS_IsUndefined(method)) { if (JS_IsUndefined(method)) {
return JS_SetPropertyGeneric(ctx, s->target, atom, return JS_SetPropertyInternal2(ctx, s->target, atom,
js_dup(value), receiver, js_dup(value), receiver,
flags); flags, NULL);
} }
atom_val = JS_AtomToValue(ctx, atom); atom_val = JS_AtomToValue(ctx, atom);
if (JS_IsException(atom_val)) { if (JS_IsException(atom_val)) {

View file

@ -9,18 +9,8 @@ test262/test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/detach
test262/test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/detached-buffer.js:47: strict mode: Test262Error: (Testing with Float64Array.) test262/test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/detached-buffer.js:47: strict mode: Test262Error: (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/tonumber-value-detached-buffer.js:42: Test262Error: Reflect.defineProperty(ta, 0, {value: {valueOf() {$DETACHBUFFER(ta.buffer); return 42;}}} ) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.) test262/test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/tonumber-value-detached-buffer.js:42: Test262Error: Reflect.defineProperty(ta, 0, {value: {valueOf() {$DETACHBUFFER(ta.buffer); return 42;}}} ) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/tonumber-value-detached-buffer.js:42: strict mode: Test262Error: Reflect.defineProperty(ta, 0, {value: {valueOf() {$DETACHBUFFER(ta.buffer); return 42;}}} ) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.) test262/test/built-ins/TypedArrayConstructors/internals/DefineOwnProperty/tonumber-value-detached-buffer.js:42: strict mode: Test262Error: Reflect.defineProperty(ta, 0, {value: {valueOf() {$DETACHBUFFER(ta.buffer); return 42;}}} ) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/detached-buffer.js:34: TypeError: cannot convert bigint to number (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/detached-buffer.js:34: strict mode: TypeError: cannot convert bigint to number (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/key-is-not-integer.js:21: Test262Error: Reflect.set("new TA([42n])", "1.1", 1n) must return true Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/key-is-not-integer.js:21: strict mode: Test262Error: Reflect.set("new TA([42n])", "1.1", 1n) must return true Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/key-is-out-of-bounds.js:27: Test262Error: Reflect.set("new TA([42n])", "-1", 1n) must return false Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/key-is-out-of-bounds.js:27: strict mode: Test262Error: Reflect.set("new TA([42n])", "-1", 1n) must return false Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/tonumber-value-detached-buffer.js:24: Test262Error: Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.) test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/tonumber-value-detached-buffer.js:24: Test262Error: Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/tonumber-value-detached-buffer.js:24: strict mode: Test262Error: Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.) test262/test/built-ins/TypedArrayConstructors/internals/Set/BigInt/tonumber-value-detached-buffer.js:24: strict mode: Test262Error: Expected SameValue(«false», «true») to be true (Testing with BigInt64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/key-is-not-integer.js:22: Test262Error: Reflect.set(sample, "1.1", 1) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/key-is-not-integer.js:22: strict mode: Test262Error: Reflect.set(sample, "1.1", 1) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/key-is-out-of-bounds.js:22: Test262Error: Reflect.set(sample, "-1", 1) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/key-is-out-of-bounds.js:22: strict mode: Test262Error: Reflect.set(sample, "-1", 1) must return true Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/tonumber-value-detached-buffer.js:39: Test262Error: Expected SameValue(«false», «true») to be true (Testing with Float64Array.) test262/test/built-ins/TypedArrayConstructors/internals/Set/tonumber-value-detached-buffer.js:39: Test262Error: Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/built-ins/TypedArrayConstructors/internals/Set/tonumber-value-detached-buffer.js:39: strict mode: Test262Error: Expected SameValue(«false», «true») to be true (Testing with Float64Array.) test262/test/built-ins/TypedArrayConstructors/internals/Set/tonumber-value-detached-buffer.js:39: strict mode: Test262Error: Expected SameValue(«false», «true») to be true (Testing with Float64Array.)
test262/test/language/expressions/arrow-function/static-init-await-reference.js:12: unexpected error type: Test262: This statement should not be evaluated. test262/test/language/expressions/arrow-function/static-init-await-reference.js:12: unexpected error type: Test262: This statement should not be evaluated.