aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qml/jsruntime/jsruntime.pri2
-rw-r--r--src/qml/jsruntime/qv4engine.cpp5
-rw-r--r--src/qml/jsruntime/qv4engine_p.h2
-rw-r--r--src/qml/jsruntime/qv4enginebase_p.h1
-rw-r--r--src/qml/jsruntime/qv4managed.cpp3
-rw-r--r--src/qml/jsruntime/qv4managed_p.h1
-rw-r--r--src/qml/jsruntime/qv4proxy.cpp270
-rw-r--r--src/qml/jsruntime/qv4proxy_p.h116
-rw-r--r--tests/auto/qml/ecmascripttests/TestExpectations138
-rw-r--r--tests/auto/qml/qjsengine/tst_qjsengine.cpp1
10 files changed, 401 insertions, 138 deletions
diff --git a/src/qml/jsruntime/jsruntime.pri b/src/qml/jsruntime/jsruntime.pri
index a2408d7d2a..34eea36f0a 100644
--- a/src/qml/jsruntime/jsruntime.pri
+++ b/src/qml/jsruntime/jsruntime.pri
@@ -30,6 +30,7 @@ SOURCES += \
$$PWD/qv4numberobject.cpp \
$$PWD/qv4object.cpp \
$$PWD/qv4objectproto.cpp \
+ $$PWD/qv4proxy.cpp \
$$PWD/qv4qmlcontext.cpp \
$$PWD/qv4reflect.cpp \
$$PWD/qv4regexpobject.cpp \
@@ -89,6 +90,7 @@ HEADERS += \
$$PWD/qv4numberobject_p.h \
$$PWD/qv4object_p.h \
$$PWD/qv4objectproto_p.h \
+ $$PWD/qv4proxy_p.h \
$$PWD/qv4qmlcontext_p.h \
$$PWD/qv4reflect_p.h \
$$PWD/qv4regexpobject_p.h \
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index a8331f153e..7cef7c8039 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -73,6 +73,7 @@
#include "qv4stringiterator_p.h"
#include "qv4generatorobject_p.h"
#include "qv4reflect_p.h"
+#include "qv4proxy_p.h"
#if QT_CONFIG(qml_sequence_object)
#include "qv4sequenceobject_p.h"
@@ -290,6 +291,7 @@ ExecutionEngine::ExecutionEngine(QJSEngine *jsEngine)
jsSymbols[Symbol_toPrimitive] = Symbol::create(this, QStringLiteral("@Symbol.toPrimitive"));
jsSymbols[Symbol_toStringTag] = Symbol::create(this, QStringLiteral("@Symbol.toStringTag"));
jsSymbols[Symbol_unscopables] = Symbol::create(this, QStringLiteral("@Symbol.unscopables"));
+ jsSymbols[Symbol_revokableProxy] = Symbol::create(this, QStringLiteral("@Proxy.revokableProxy"));
ic = newInternalClass(ArrayPrototype::staticVTable(), objectPrototype());
Q_ASSERT(ic->d()->prototype);
@@ -386,6 +388,8 @@ ExecutionEngine::ExecutionEngine(QJSEngine *jsEngine)
classes[Class_ErrorProto] = ic->addMember(id_name()->identifier(), Attr_Data|Attr_NotEnumerable, &index);
Q_ASSERT(index == ErrorPrototype::Index_Name);
+ classes[Class_ProxyObject] = classes[Class_Empty]->changeVTable(ProxyObject::staticVTable());
+
jsObjects[GetStack_Function] = FunctionObject::createBuiltinFunction(this, str = newIdentifier(QStringLiteral("stack")), ErrorObject::method_get_stack, 0);
jsObjects[ErrorProto] = memoryManager->allocObject<ErrorPrototype>(classes[Class_ErrorProto]);
@@ -532,6 +536,7 @@ ExecutionEngine::ExecutionEngine(QJSEngine *jsEngine)
globalObject->defineDefaultProperty(QStringLiteral("Math"), (o = memoryManager->allocate<MathObject>()));
globalObject->defineDefaultProperty(QStringLiteral("JSON"), (o = memoryManager->allocate<JsonObject>()));
globalObject->defineDefaultProperty(QStringLiteral("Reflect"), (o = memoryManager->allocate<Reflect>()));
+ globalObject->defineDefaultProperty(QStringLiteral("Proxy"), (o = memoryManager->allocate<Proxy>(rootContext())));
globalObject->defineReadonlyProperty(QStringLiteral("undefined"), Primitive::undefinedValue());
globalObject->defineReadonlyProperty(QStringLiteral("NaN"), Primitive::fromDouble(std::numeric_limits<double>::quiet_NaN()));
diff --git a/src/qml/jsruntime/qv4engine_p.h b/src/qml/jsruntime/qv4engine_p.h
index b007e65c4b..abd363adcb 100644
--- a/src/qml/jsruntime/qv4engine_p.h
+++ b/src/qml/jsruntime/qv4engine_p.h
@@ -368,6 +368,7 @@ public:
Symbol_toPrimitive,
Symbol_toStringTag,
Symbol_unscopables,
+ Symbol_revokableProxy,
NJSSymbols
};
Value *jsSymbols;
@@ -425,6 +426,7 @@ public:
Symbol *symbol_toPrimitive() const { return reinterpret_cast<Symbol *>(jsSymbols + Symbol_toPrimitive); }
Symbol *symbol_toStringTag() const { return reinterpret_cast<Symbol *>(jsSymbols + Symbol_toStringTag); }
Symbol *symbol_unscopables() const { return reinterpret_cast<Symbol *>(jsSymbols + Symbol_unscopables); }
+ Symbol *symbol_revokableProxy() const { return reinterpret_cast<Symbol *>(jsSymbols + Symbol_revokableProxy); }
#ifndef V4_BOOTSTRAP
QIntrusiveList<CompiledData::CompilationUnit, &CompiledData::CompilationUnit::nextCompilationUnit> compilationUnits;
diff --git a/src/qml/jsruntime/qv4enginebase_p.h b/src/qml/jsruntime/qv4enginebase_p.h
index 03ff25d5b5..7701cf37bc 100644
--- a/src/qml/jsruntime/qv4enginebase_p.h
+++ b/src/qml/jsruntime/qv4enginebase_p.h
@@ -115,6 +115,7 @@ struct Q_QML_EXPORT EngineBase {
Class_ErrorObjectWithMessage,
Class_ErrorProto,
Class_QmlContextWrapper,
+ Class_ProxyObject,
Class_Symbol,
NClasses
};
diff --git a/src/qml/jsruntime/qv4managed.cpp b/src/qml/jsruntime/qv4managed.cpp
index 58f5b0051f..9321b9dd64 100644
--- a/src/qml/jsruntime/qv4managed.cpp
+++ b/src/qml/jsruntime/qv4managed.cpp
@@ -118,6 +118,9 @@ QString Managed::className() const
case Type_JsonObject:
s = "JSON";
break;
+ case Type_ProxyObject:
+ s = "ProxyObject";
+ break;
case Type_MathObject:
s = "Math";
break;
diff --git a/src/qml/jsruntime/qv4managed_p.h b/src/qml/jsruntime/qv4managed_p.h
index f16bf3dc58..6983b52c83 100644
--- a/src/qml/jsruntime/qv4managed_p.h
+++ b/src/qml/jsruntime/qv4managed_p.h
@@ -196,6 +196,7 @@ public:
Type_ArgumentsObject,
Type_JsonObject,
Type_MathObject,
+ Type_ProxyObject,
Type_ExecutionContext,
Type_InternalClass,
diff --git a/src/qml/jsruntime/qv4proxy.cpp b/src/qml/jsruntime/qv4proxy.cpp
new file mode 100644
index 0000000000..b34af97870
--- /dev/null
+++ b/src/qml/jsruntime/qv4proxy.cpp
@@ -0,0 +1,270 @@
+/****************************************************************************
+**
+** Copyright (C) 2018 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtQml module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+
+#include "qv4proxy_p.h"
+#include "qv4symbol_p.h"
+#include "qv4jscall_p.h"
+
+using namespace QV4;
+
+DEFINE_OBJECT_VTABLE(ProxyObject);
+
+void Heap::ProxyObject::init(const QV4::Object *target, const QV4::Object *handler)
+{
+ Object::init();
+ ExecutionEngine *e = internalClass->engine;
+ this->target.set(e, target->d());
+ this->handler.set(e, handler->d());
+}
+
+ReturnedValue ProxyObject::get(const Managed *m, StringOrSymbol *name, bool *hasProperty)
+{
+ Scope scope(m);
+ const ProxyObject *o = static_cast<const ProxyObject *>(m);
+ if (!o->d()->handler)
+ return scope.engine->throwTypeError();
+
+ ScopedObject target(scope, o->d()->target);
+ Q_ASSERT(target);
+ ScopedObject handler(scope, o->d()->handler);
+ ScopedValue trap(scope, handler->get(scope.engine->id_get()));
+ if (scope.hasException())
+ return Encode::undefined();
+ if (trap->isUndefined())
+ return target->get(name, hasProperty);
+ if (!trap->isFunctionObject())
+ return scope.engine->throwTypeError();
+ if (hasProperty)
+ *hasProperty = true;
+
+ JSCallData cdata(scope, 3, nullptr, handler);
+ cdata.args[0] = target;
+ cdata.args[1] = name;
+ cdata.args[2] = o->d(); // ### fix receiver handling
+
+ ScopedValue trapResult(scope, static_cast<const FunctionObject *>(trap.ptr)->call(cdata));
+ ScopedProperty targetDesc(scope);
+ PropertyAttributes attributes;
+ target->getOwnProperty(name, &attributes, targetDesc);
+ if (attributes != Attr_Invalid && !attributes.isConfigurable()) {
+ if (attributes.isData() && !attributes.isWritable()) {
+ if (!trapResult->sameValue(targetDesc->value))
+ return scope.engine->throwTypeError();
+ }
+ if (attributes.isAccessor() && targetDesc->value.isUndefined()) {
+ if (!trapResult->isUndefined())
+ return scope.engine->throwTypeError();
+ }
+ }
+ return trapResult->asReturnedValue();
+}
+
+ReturnedValue ProxyObject::getIndexed(const Managed *m, uint index, bool *hasProperty)
+{
+ Scope scope(m);
+ ScopedString name(scope, Primitive::fromUInt32(index).toString(scope.engine));
+ return get(m, name, hasProperty);
+}
+
+bool ProxyObject::put(Managed *m, StringOrSymbol *name, const Value &value)
+{
+ Scope scope(m);
+ const ProxyObject *o = static_cast<const ProxyObject *>(m);
+ if (!o->d()->handler)
+ return scope.engine->throwTypeError();
+
+ ScopedObject target(scope, o->d()->target);
+ Q_ASSERT(target);
+ ScopedObject handler(scope, o->d()->handler);
+ ScopedValue trap(scope, handler->get(scope.engine->id_set()));
+ if (scope.hasException())
+ return Encode::undefined();
+ if (trap->isUndefined())
+ return target->put(name, value);
+ if (!trap->isFunctionObject())
+ return scope.engine->throwTypeError();
+
+ JSCallData cdata(scope, 4, nullptr, handler);
+ cdata.args[0] = target;
+ cdata.args[1] = name;
+ cdata.args[2] = value;
+ cdata.args[3] = o->d(); // ### fix receiver handling
+
+ ScopedValue trapResult(scope, static_cast<const FunctionObject *>(trap.ptr)->call(cdata));
+ if (!trapResult->toBoolean())
+ return false;
+ ScopedProperty targetDesc(scope);
+ PropertyAttributes attributes;
+ target->getOwnProperty(name, &attributes, targetDesc);
+ if (attributes != Attr_Invalid && !attributes.isConfigurable()) {
+ if (attributes.isData() && !attributes.isWritable()) {
+ if (!value.sameValue(targetDesc->value))
+ return scope.engine->throwTypeError();
+ }
+ if (attributes.isAccessor() && targetDesc->set.isUndefined())
+ return scope.engine->throwTypeError();
+ }
+ return true;
+}
+
+bool ProxyObject::putIndexed(Managed *m, uint index, const Value &value)
+{
+ Scope scope(m);
+ ScopedString name(scope, Primitive::fromUInt32(index).toString(scope.engine));
+ return put(m, name, value);
+}
+
+bool ProxyObject::deleteProperty(Managed *m, StringOrSymbol *name)
+{
+ Scope scope(m);
+ const ProxyObject *o = static_cast<const ProxyObject *>(m);
+ if (!o->d()->handler)
+ return scope.engine->throwTypeError();
+
+ ScopedObject target(scope, o->d()->target);
+ Q_ASSERT(target);
+ ScopedObject handler(scope, o->d()->handler);
+ ScopedString deleteProp(scope, scope.engine->newString(QStringLiteral("deleteProperty")));
+ ScopedValue trap(scope, handler->get(deleteProp));
+ if (scope.hasException())
+ return Encode::undefined();
+ if (trap->isUndefined())
+ return target->deleteProperty(name);
+ if (!trap->isFunctionObject())
+ return scope.engine->throwTypeError();
+
+ JSCallData cdata(scope, 3, nullptr, handler);
+ cdata.args[0] = target;
+ cdata.args[1] = name;
+ cdata.args[2] = o->d(); // ### fix receiver handling
+
+ ScopedValue trapResult(scope, static_cast<const FunctionObject *>(trap.ptr)->call(cdata));
+ if (!trapResult->toBoolean())
+ return false;
+ ScopedProperty targetDesc(scope);
+ PropertyAttributes attributes;
+ target->getOwnProperty(name, &attributes, targetDesc);
+ if (attributes == Attr_Invalid)
+ return true;
+ if (!attributes.isConfigurable())
+ return scope.engine->throwTypeError();
+ return true;
+}
+
+bool ProxyObject::deleteIndexedProperty(Managed *m, uint index)
+{
+ Scope scope(m);
+ ScopedString name(scope, Primitive::fromUInt32(index).toString(scope.engine));
+ return deleteProperty(m, name);
+}
+
+//ReturnedValue ProxyObject::callAsConstructor(const FunctionObject *f, const Value *argv, int argc)
+//{
+
+//}
+
+//ReturnedValue ProxyObject::call(const FunctionObject *f, const Value *thisObject, const Value *argv, int argc)
+//{
+
+//}
+
+DEFINE_OBJECT_VTABLE(Proxy);
+
+void Heap::Proxy::init(QV4::ExecutionContext *ctx)
+{
+ Heap::FunctionObject::init(ctx, QStringLiteral("Proxy"));
+
+ Scope scope(ctx);
+ Scoped<QV4::Proxy> ctor(scope, this);
+ ctor->defineDefaultProperty(QStringLiteral("revocable"), QV4::Proxy::method_revocable, 2);
+}
+
+ReturnedValue Proxy::callAsConstructor(const FunctionObject *f, const Value *argv, int argc)
+{
+ Scope scope(f);
+ if (argc < 2 || !argv[0].isObject() || !argv[1].isObject())
+ return scope.engine->throwTypeError();
+
+ const Object *target = static_cast<const Object *>(argv);
+ const Object *handler = static_cast<const Object *>(argv + 1);
+ if (const ProxyObject *ptarget = target->as<ProxyObject>())
+ if (!ptarget->d()->handler)
+ return scope.engine->throwTypeError();
+ if (const ProxyObject *phandler = handler->as<ProxyObject>())
+ if (!phandler->d()->handler)
+ return scope.engine->throwTypeError();
+
+ ScopedObject o(scope, scope.engine->memoryManager->allocate<ProxyObject>(target, handler));
+ return o->asReturnedValue();
+}
+
+ReturnedValue Proxy::call(const FunctionObject *f, const Value *, const Value *, int)
+{
+ return f->engine()->throwTypeError();
+}
+
+ReturnedValue Proxy::method_revocable(const FunctionObject *f, const Value *, const Value *argv, int argc)
+{
+ Scope scope(f);
+ ScopedObject proxy(scope, Proxy::callAsConstructor(f, argv, argc));
+ if (scope.hasException())
+ return Encode::undefined();
+
+ ScopedString revoke(scope, scope.engine->newString(QStringLiteral("revoke")));
+ ScopedFunctionObject revoker(scope, createBuiltinFunction(scope.engine, revoke, method_revoke, 0));
+ revoker->defineDefaultProperty(scope.engine->symbol_revokableProxy(), proxy);
+
+ ScopedObject o(scope, scope.engine->newObject());
+ ScopedString p(scope, scope.engine->newString(QStringLiteral("proxy")));
+ o->defineDefaultProperty(p, proxy);
+ o->defineDefaultProperty(revoke, revoker);
+ return o->asReturnedValue();
+}
+
+ReturnedValue Proxy::method_revoke(const FunctionObject *f, const Value *, const Value *, int)
+{
+ Scope scope(f);
+ Scoped<ProxyObject> proxy(scope, f->get(scope.engine->symbol_revokableProxy()));
+ Q_ASSERT(proxy);
+
+ proxy->d()->target.set(scope.engine, nullptr);
+ proxy->d()->handler.set(scope.engine, nullptr);
+ return Encode::undefined();
+}
diff --git a/src/qml/jsruntime/qv4proxy_p.h b/src/qml/jsruntime/qv4proxy_p.h
new file mode 100644
index 0000000000..52b1fa549e
--- /dev/null
+++ b/src/qml/jsruntime/qv4proxy_p.h
@@ -0,0 +1,116 @@
+/****************************************************************************
+**
+** Copyright (C) 2018 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtQml module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#ifndef QV4PROXY_P_H
+#define QV4PROXY_P_H
+
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists purely as an
+// implementation detail. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
+#include "qv4object_p.h"
+#include "qv4functionobject_p.h"
+
+QT_BEGIN_NAMESPACE
+
+namespace QV4 {
+
+namespace Heap {
+
+#define ProxyObjectMembers(class, Member) \
+ Member(class, Pointer, Object *, target) \
+ Member(class, Pointer, Object *, handler)
+
+DECLARE_HEAP_OBJECT(ProxyObject, Object) {
+ DECLARE_MARKOBJECTS(ProxyObject)
+
+ void init(const QV4::Object *target, const QV4::Object *handler);
+};
+
+#define ProxyMembers(class, Member) \
+ Member(class, Pointer, Symbol *, revokableProxySymbol) \
+
+DECLARE_HEAP_OBJECT(Proxy, FunctionObject) {
+ DECLARE_MARKOBJECTS(Proxy)
+
+ void init(QV4::ExecutionContext *ctx);
+};
+
+}
+
+struct ProxyObject: Object {
+ V4_OBJECT2(ProxyObject, Object)
+ Q_MANAGED_TYPE(ProxyObject)
+ V4_INTERNALCLASS(ProxyObject)
+
+ static ReturnedValue get(const Managed *m, StringOrSymbol *name, bool *hasProperty);
+ static ReturnedValue getIndexed(const Managed *m, uint index, bool *hasProperty);
+ static bool put(Managed *m, StringOrSymbol *name, const Value &value);
+ static bool putIndexed(Managed *m, uint index, const Value &value);
+ static bool deleteProperty(Managed *m, StringOrSymbol *name);
+ static bool deleteIndexedProperty(Managed *m, uint index);
+
+ // those might require a second proxy object that derives from FunctionObject...
+// static ReturnedValue callAsConstructor(const FunctionObject *f, const Value *argv, int argc);
+// static ReturnedValue call(const FunctionObject *f, const Value *thisObject, const Value *argv, int argc);
+};
+
+struct Proxy : FunctionObject
+{
+ V4_OBJECT2(Proxy, FunctionObject)
+
+ static ReturnedValue callAsConstructor(const FunctionObject *f, const Value *argv, int argc);
+ static ReturnedValue call(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
+
+ static ReturnedValue method_revocable(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
+
+ static ReturnedValue method_revoke(const FunctionObject *, const Value *thisObject, const Value *argv, int argc);
+};
+
+}
+
+QT_END_NAMESPACE
+
+#endif // QV4ECMAOBJECTS_P_H
diff --git a/tests/auto/qml/ecmascripttests/TestExpectations b/tests/auto/qml/ecmascripttests/TestExpectations
index de7a072842..36a55c8adf 100644
--- a/tests/auto/qml/ecmascripttests/TestExpectations
+++ b/tests/auto/qml/ecmascripttests/TestExpectations
@@ -66,17 +66,13 @@ built-ins/Array/prototype/concat/is-concat-spreadable-proxy-revoked.js fails
built-ins/Array/prototype/concat/is-concat-spreadable-proxy.js fails
built-ins/Array/prototype/concat/is-concat-spreadable-val-falsey.js fails
built-ins/Array/prototype/concat/is-concat-spreadable-val-truthy.js fails
-built-ins/Array/prototype/copyWithin/return-abrupt-from-delete-proxy-target.js fails
-built-ins/Array/prototype/copyWithin/return-abrupt-from-has-start.js fails
built-ins/Array/prototype/every/15.4.4.16-3-29.js fails
built-ins/Array/prototype/filter/create-ctor-non-object.js fails
built-ins/Array/prototype/filter/create-proto-from-ctor-realm-array.js fails
built-ins/Array/prototype/filter/create-proto-from-ctor-realm-non-array.js fails
built-ins/Array/prototype/filter/create-proxy.js fails
-built-ins/Array/prototype/filter/create-revoked-proxy.js fails
built-ins/Array/prototype/filter/create-species-non-ctor.js fails
built-ins/Array/prototype/filter/create-species.js fails
-built-ins/Array/prototype/includes/get-prop.js fails
built-ins/Array/prototype/includes/length-boundaries.js fails
built-ins/Array/prototype/indexOf/15.4.4.14-3-28.js fails
built-ins/Array/prototype/indexOf/15.4.4.14-3-29.js fails
@@ -86,9 +82,7 @@ built-ins/Array/prototype/map/create-ctor-non-object.js fails
built-ins/Array/prototype/map/create-proto-from-ctor-realm-array.js fails
built-ins/Array/prototype/map/create-proto-from-ctor-realm-non-array.js fails
built-ins/Array/prototype/map/create-proxy.js fails
-built-ins/Array/prototype/map/create-revoked-proxy.js fails
built-ins/Array/prototype/map/create-species-non-ctor.js fails
-built-ins/Array/prototype/map/create-species-undef-invalid-len.js fails
built-ins/Array/prototype/map/create-species.js fails
built-ins/Array/prototype/pop/S15.4.4.6_A2_T2.js fails
built-ins/Array/prototype/pop/S15.4.4.6_A3_T1.js fails
@@ -108,7 +102,6 @@ built-ins/Array/prototype/slice/create-proto-from-ctor-realm-array.js fails
built-ins/Array/prototype/slice/create-proto-from-ctor-realm-non-array.js fails
built-ins/Array/prototype/slice/create-proxied-array-invalid-len.js fails
built-ins/Array/prototype/slice/create-proxy.js fails
-built-ins/Array/prototype/slice/create-revoked-proxy.js fails
built-ins/Array/prototype/slice/create-species-neg-zero.js fails
built-ins/Array/prototype/slice/create-species-non-ctor.js fails
built-ins/Array/prototype/slice/create-species.js fails
@@ -123,11 +116,9 @@ built-ins/Array/prototype/splice/create-ctor-non-object.js fails
built-ins/Array/prototype/splice/create-proto-from-ctor-realm-array.js fails
built-ins/Array/prototype/splice/create-proto-from-ctor-realm-non-array.js fails
built-ins/Array/prototype/splice/create-proxy.js fails
-built-ins/Array/prototype/splice/create-revoked-proxy.js fails
built-ins/Array/prototype/splice/create-species-length-exceeding-integer-limit.js fails
built-ins/Array/prototype/splice/create-species-neg-zero.js fails
built-ins/Array/prototype/splice/create-species-non-ctor.js fails
-built-ins/Array/prototype/splice/create-species-undef-invalid-len.js fails
built-ins/Array/prototype/splice/create-species.js fails
built-ins/Array/prototype/splice/length-and-deleteCount-exceeding-integer-limit.js fails
built-ins/Array/prototype/splice/length-exceeding-integer-limit-shrink-array.js fails
@@ -433,7 +424,6 @@ built-ins/Function/internals/Construct/derived-this-uninitialized.js fails
built-ins/Function/proto-from-ctor-realm.js fails
built-ins/Function/prototype/Symbol.hasInstance/this-val-not-callable.js fails
built-ins/Function/prototype/Symbol.hasInstance/this-val-poisoned-prototype.js fails
-built-ins/Function/prototype/Symbol.hasInstance/value-get-prototype-of-err.js fails
built-ins/Function/prototype/Symbol.hasInstance/value-non-obj.js fails
built-ins/Function/prototype/bind/BoundFunction_restricted-properties.js fails
built-ins/Function/prototype/bind/get-fn-realm.js fails
@@ -496,16 +486,8 @@ built-ins/Function/prototype/toString/unicode.js fails
built-ins/GeneratorFunction/proto-from-ctor-realm.js fails
built-ins/JSON/parse/revived-proxy-revoked.js fails
built-ins/JSON/parse/revived-proxy.js fails
-built-ins/JSON/parse/reviver-array-define-prop-err.js fails
-built-ins/JSON/parse/reviver-array-delete-err.js fails
-built-ins/JSON/parse/reviver-array-length-coerce-err.js fails
-built-ins/JSON/parse/reviver-array-length-get-err.js fails
-built-ins/JSON/parse/reviver-object-define-prop-err.js fails
-built-ins/JSON/parse/reviver-object-delete-err.js fails
-built-ins/JSON/parse/reviver-object-own-keys-err.js fails
built-ins/JSON/stringify/replacer-proxy-revoked.js fails
built-ins/JSON/stringify/replacer-proxy.js fails
-built-ins/JSON/stringify/value-proxy-revoked.js fails
built-ins/JSON/stringify/value-proxy.js fails
built-ins/Map/iterable-calls-set.js fails
built-ins/Map/iterator-close-after-set-failure.js fails
@@ -567,8 +549,6 @@ built-ins/Number/string-hex-literal-invalid.js fails
built-ins/Number/string-octal-literal.js fails
built-ins/Object/assign/Target-Symbol.js fails
built-ins/Object/assign/source-own-prop-desc-missing.js fails
-built-ins/Object/assign/source-own-prop-error.js fails
-built-ins/Object/assign/source-own-prop-keys-error.js fails
built-ins/Object/create/15.2.3.5-4-14.js strictFails
built-ins/Object/create/15.2.3.5-4-37.js strictFails
built-ins/Object/entries/exception-during-enumeration.js fails
@@ -628,9 +608,7 @@ built-ins/Object/prototype/toLocaleString/primitive_this_value_getter.js strictF
built-ins/Object/prototype/toString/no-prototype-property.js fails
built-ins/Object/prototype/toString/proxy-array.js fails
built-ins/Object/prototype/toString/proxy-function.js fails
-built-ins/Object/prototype/toString/proxy-revoked.js fails
built-ins/Object/prototype/valueOf/S15.2.4.4_A14.js fails
-built-ins/Object/setPrototypeOf/set-error.js fails
built-ins/Object/values/exception-during-enumeration.js fails
built-ins/Object/values/function-length.js fails
built-ins/Object/values/function-name.js fails
@@ -801,10 +779,8 @@ built-ins/Promise/resolve/resolve-prms-cstm-then.js fails
built-ins/Proxy/apply/arguments-realm.js fails
built-ins/Proxy/apply/call-parameters.js fails
built-ins/Proxy/apply/call-result.js fails
-built-ins/Proxy/apply/null-handler.js fails
built-ins/Proxy/apply/return-abrupt.js fails
built-ins/Proxy/apply/trap-is-not-callable-realm.js fails
-built-ins/Proxy/apply/trap-is-not-callable.js fails
built-ins/Proxy/apply/trap-is-null.js fails
built-ins/Proxy/apply/trap-is-undefined-no-property.js fails
built-ins/Proxy/apply/trap-is-undefined.js fails
@@ -812,42 +788,18 @@ built-ins/Proxy/construct/arguments-realm.js fails
built-ins/Proxy/construct/call-parameters-new-target.js fails
built-ins/Proxy/construct/call-parameters.js fails
built-ins/Proxy/construct/call-result.js fails
-built-ins/Proxy/construct/null-handler.js fails
built-ins/Proxy/construct/return-is-abrupt.js fails
-built-ins/Proxy/construct/return-not-object-throws-boolean.js fails
-built-ins/Proxy/construct/return-not-object-throws-number.js fails
-built-ins/Proxy/construct/return-not-object-throws-string.js fails
-built-ins/Proxy/construct/return-not-object-throws-symbol.js fails
-built-ins/Proxy/construct/return-not-object-throws-undefined.js fails
built-ins/Proxy/construct/trap-is-not-callable-realm.js fails
-built-ins/Proxy/construct/trap-is-not-callable.js fails
built-ins/Proxy/construct/trap-is-null.js fails
built-ins/Proxy/construct/trap-is-undefined-no-property.js fails
built-ins/Proxy/construct/trap-is-undefined-proto-from-ctor-realm.js fails
built-ins/Proxy/construct/trap-is-undefined.js fails
-built-ins/Proxy/constructor.js fails
-built-ins/Proxy/create-handler-is-revoked-proxy.js fails
-built-ins/Proxy/create-handler-not-object-throw-boolean.js fails
-built-ins/Proxy/create-handler-not-object-throw-null.js fails
-built-ins/Proxy/create-handler-not-object-throw-number.js fails
-built-ins/Proxy/create-handler-not-object-throw-string.js fails
-built-ins/Proxy/create-handler-not-object-throw-symbol.js fails
-built-ins/Proxy/create-handler-not-object-throw-undefined.js fails
-built-ins/Proxy/create-target-is-not-callable.js fails
built-ins/Proxy/create-target-is-not-constructor.js fails
-built-ins/Proxy/create-target-is-revoked-proxy.js fails
-built-ins/Proxy/create-target-not-object-throw-boolean.js fails
-built-ins/Proxy/create-target-not-object-throw-null.js fails
-built-ins/Proxy/create-target-not-object-throw-number.js fails
-built-ins/Proxy/create-target-not-object-throw-string.js fails
-built-ins/Proxy/create-target-not-object-throw-symbol.js fails
-built-ins/Proxy/create-target-not-object-throw-undefined.js fails
built-ins/Proxy/defineProperty/call-parameters.js fails
built-ins/Proxy/defineProperty/desc-realm.js fails
built-ins/Proxy/defineProperty/null-handler-realm.js fails
built-ins/Proxy/defineProperty/null-handler.js fails
built-ins/Proxy/defineProperty/return-boolean-and-define-target.js fails
-built-ins/Proxy/defineProperty/return-is-abrupt.js fails
built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable-realm.js fails
built-ins/Proxy/defineProperty/targetdesc-configurable-desc-not-configurable.js fails
built-ins/Proxy/defineProperty/targetdesc-not-compatible-descriptor-not-configurable-target-realm.js fails
@@ -862,44 +814,16 @@ built-ins/Proxy/defineProperty/trap-is-not-callable-realm.js fails
built-ins/Proxy/defineProperty/trap-is-not-callable.js fails
built-ins/Proxy/defineProperty/trap-is-undefined.js fails
built-ins/Proxy/defineProperty/trap-return-is-false.js fails
-built-ins/Proxy/deleteProperty/boolean-trap-result-boolean-false.js fails
-built-ins/Proxy/deleteProperty/boolean-trap-result-boolean-true.js fails
-built-ins/Proxy/deleteProperty/call-parameters.js fails
-built-ins/Proxy/deleteProperty/null-handler.js fails
-built-ins/Proxy/deleteProperty/return-false-not-strict.js sloppyFails
-built-ins/Proxy/deleteProperty/return-false-strict.js strictFails
-built-ins/Proxy/deleteProperty/return-is-abrupt.js fails
-built-ins/Proxy/deleteProperty/targetdesc-is-not-configurable.js fails
-built-ins/Proxy/deleteProperty/targetdesc-is-undefined-return-true.js fails
built-ins/Proxy/deleteProperty/trap-is-not-callable-realm.js fails
-built-ins/Proxy/deleteProperty/trap-is-not-callable.js fails
-built-ins/Proxy/deleteProperty/trap-is-undefined-not-strict.js sloppyFails
-built-ins/Proxy/deleteProperty/trap-is-undefined-strict.js strictFails
built-ins/Proxy/enumerate/removed-does-not-trigger.js fails
-built-ins/Proxy/function-prototype.js fails
built-ins/Proxy/get-fn-realm.js fails
-built-ins/Proxy/get/accessor-get-is-undefined-throws.js fails
-built-ins/Proxy/get/call-parameters.js fails
-built-ins/Proxy/get/not-same-value-configurable-false-writable-false-throws.js fails
-built-ins/Proxy/get/null-handler.js fails
-built-ins/Proxy/get/return-is-abrupt.js fails
-built-ins/Proxy/get/return-trap-result-accessor-property.js fails
-built-ins/Proxy/get/return-trap-result-configurable-false-writable-true.js fails
-built-ins/Proxy/get/return-trap-result-configurable-true-assessor-get-undefined.js fails
-built-ins/Proxy/get/return-trap-result-configurable-true-writable-false.js fails
-built-ins/Proxy/get/return-trap-result-same-value-configurable-false-writable-false.js fails
-built-ins/Proxy/get/return-trap-result.js fails
built-ins/Proxy/get/trap-is-not-callable-realm.js fails
-built-ins/Proxy/get/trap-is-not-callable.js fails
-built-ins/Proxy/get/trap-is-undefined-no-property.js fails
built-ins/Proxy/get/trap-is-undefined-receiver.js fails
-built-ins/Proxy/get/trap-is-undefined.js fails
built-ins/Proxy/getOwnPropertyDescriptor/call-parameters.js fails
built-ins/Proxy/getOwnPropertyDescriptor/null-handler.js fails
built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-target-is-not-extensible.js fails
built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-targetdesc-is-not-configurable.js fails
built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined-targetdesc-is-undefined.js fails
-built-ins/Proxy/getOwnPropertyDescriptor/result-is-undefined.js fails
built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined-realm.js fails
built-ins/Proxy/getOwnPropertyDescriptor/result-type-is-not-object-nor-undefined.js fails
built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-invalid-descriptor.js fails
@@ -907,7 +831,6 @@ built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-targetde
built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-is-not-configurable-targetdesc-is-undefined.js fails
built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-return-configurable.js fails
built-ins/Proxy/getOwnPropertyDescriptor/resultdesc-return-not-configurable.js fails
-built-ins/Proxy/getOwnPropertyDescriptor/return-is-abrupt.js fails
built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable-realm.js fails
built-ins/Proxy/getOwnPropertyDescriptor/trap-is-not-callable.js fails
built-ins/Proxy/getOwnPropertyDescriptor/trap-is-undefined.js fails
@@ -916,7 +839,6 @@ built-ins/Proxy/getPrototypeOf/extensible-target-return-handlerproto.js fails
built-ins/Proxy/getPrototypeOf/not-extensible-not-same-proto-throws.js fails
built-ins/Proxy/getPrototypeOf/not-extensible-same-proto.js fails
built-ins/Proxy/getPrototypeOf/null-handler.js fails
-built-ins/Proxy/getPrototypeOf/return-is-abrupt.js fails
built-ins/Proxy/getPrototypeOf/trap-is-not-callable-realm.js fails
built-ins/Proxy/getPrototypeOf/trap-is-not-callable.js fails
built-ins/Proxy/getPrototypeOf/trap-is-undefined.js fails
@@ -928,27 +850,21 @@ built-ins/Proxy/getPrototypeOf/trap-result-neither-object-nor-null-throws-undefi
built-ins/Proxy/has/call-in.js fails
built-ins/Proxy/has/call-object-create.js fails
built-ins/Proxy/has/call-with.js sloppyFails
-built-ins/Proxy/has/null-handler-using-with.js sloppyFails
built-ins/Proxy/has/null-handler.js fails
built-ins/Proxy/has/return-false-target-not-extensible-using-with.js sloppyFails
built-ins/Proxy/has/return-false-target-not-extensible.js fails
built-ins/Proxy/has/return-false-target-prop-exists-using-with.js sloppyFails
-built-ins/Proxy/has/return-false-target-prop-exists.js fails
built-ins/Proxy/has/return-false-targetdesc-not-configurable-using-with.js sloppyFails
built-ins/Proxy/has/return-false-targetdesc-not-configurable.js fails
-built-ins/Proxy/has/return-is-abrupt-in.js fails
built-ins/Proxy/has/return-is-abrupt-with.js sloppyFails
-built-ins/Proxy/has/return-true-target-prop-exists-using-with.js sloppyFails
built-ins/Proxy/has/return-true-target-prop-exists.js fails
built-ins/Proxy/has/return-true-without-same-target-prop.js fails
built-ins/Proxy/has/trap-is-not-callable-realm.js fails
built-ins/Proxy/has/trap-is-not-callable-using-with.js sloppyFails
built-ins/Proxy/has/trap-is-not-callable.js fails
-built-ins/Proxy/has/trap-is-undefined-using-with.js sloppyFails
built-ins/Proxy/has/trap-is-undefined.js fails
built-ins/Proxy/isExtensible/call-parameters.js fails
built-ins/Proxy/isExtensible/null-handler.js fails
-built-ins/Proxy/isExtensible/return-is-abrupt.js fails
built-ins/Proxy/isExtensible/return-is-boolean.js fails
built-ins/Proxy/isExtensible/return-is-different-from-target.js fails
built-ins/Proxy/isExtensible/return-same-result-from-target.js fails
@@ -956,7 +872,6 @@ built-ins/Proxy/isExtensible/trap-is-not-callable-realm.js fails
built-ins/Proxy/isExtensible/trap-is-not-callable.js fails
built-ins/Proxy/isExtensible/trap-is-undefined.js fails
built-ins/Proxy/length.js fails
-built-ins/Proxy/name.js fails
built-ins/Proxy/ownKeys/call-parameters-object-getownpropertynames.js fails
built-ins/Proxy/ownKeys/call-parameters-object-getownpropertysymbols.js fails
built-ins/Proxy/ownKeys/call-parameters-object-keys.js fails
@@ -969,7 +884,6 @@ built-ins/Proxy/ownKeys/null-handler.js fails
built-ins/Proxy/ownKeys/return-all-non-configurable-keys.js fails
built-ins/Proxy/ownKeys/return-duplicate-entries-throws.js fails
built-ins/Proxy/ownKeys/return-duplicate-symbol-entries-throws.js fails
-built-ins/Proxy/ownKeys/return-is-abrupt.js fails
built-ins/Proxy/ownKeys/return-not-list-object-throws-realm.js fails
built-ins/Proxy/ownKeys/return-not-list-object-throws.js fails
built-ins/Proxy/ownKeys/return-type-throws-array.js fails
@@ -984,55 +898,19 @@ built-ins/Proxy/ownKeys/trap-is-undefined.js fails
built-ins/Proxy/preventExtensions/call-parameters.js fails
built-ins/Proxy/preventExtensions/null-handler.js fails
built-ins/Proxy/preventExtensions/return-false.js fails
-built-ins/Proxy/preventExtensions/return-is-abrupt.js fails
built-ins/Proxy/preventExtensions/return-true-target-is-extensible.js fails
-built-ins/Proxy/preventExtensions/return-true-target-is-not-extensible.js fails
built-ins/Proxy/preventExtensions/trap-is-not-callable-realm.js fails
built-ins/Proxy/preventExtensions/trap-is-not-callable.js fails
-built-ins/Proxy/preventExtensions/trap-is-undefined.js fails
-built-ins/Proxy/proxy-newtarget.js fails
built-ins/Proxy/proxy-no-prototype.js fails
-built-ins/Proxy/proxy-undefined-newtarget.js fails
-built-ins/Proxy/proxy.js fails
-built-ins/Proxy/revocable/length.js fails
-built-ins/Proxy/revocable/name.js fails
-built-ins/Proxy/revocable/proxy.js fails
-built-ins/Proxy/revocable/revocation-function-extensible.js fails
-built-ins/Proxy/revocable/revocation-function-length.js fails
built-ins/Proxy/revocable/revocation-function-name.js fails
built-ins/Proxy/revocable/revocation-function-nonconstructor.js fails
-built-ins/Proxy/revocable/revocation-function-prototype.js fails
-built-ins/Proxy/revocable/revoke-consecutive-call-returns-undefined.js fails
-built-ins/Proxy/revocable/revoke-returns-undefined.js fails
-built-ins/Proxy/revocable/revoke.js fails
-built-ins/Proxy/set/boolean-trap-result-is-false-boolean-return-false.js fails
-built-ins/Proxy/set/boolean-trap-result-is-false-null-return-false.js fails
-built-ins/Proxy/set/boolean-trap-result-is-false-number-return-false.js fails
-built-ins/Proxy/set/boolean-trap-result-is-false-string-return-false.js fails
-built-ins/Proxy/set/boolean-trap-result-is-false-undefined-return-false.js fails
-built-ins/Proxy/set/call-parameters.js fails
-built-ins/Proxy/set/null-handler.js fails
-built-ins/Proxy/set/return-is-abrupt.js fails
-built-ins/Proxy/set/return-true-target-property-accessor-is-configurable-set-is-undefined.js fails
-built-ins/Proxy/set/return-true-target-property-accessor-is-not-configurable.js fails
-built-ins/Proxy/set/return-true-target-property-is-not-configurable.js fails
-built-ins/Proxy/set/return-true-target-property-is-not-writable.js fails
-built-ins/Proxy/set/target-property-is-accessor-not-configurable-set-is-undefined.js fails
-built-ins/Proxy/set/target-property-is-not-configurable-not-writable-not-equal-to-v.js fails
built-ins/Proxy/set/trap-is-not-callable-realm.js fails
-built-ins/Proxy/set/trap-is-not-callable.js fails
-built-ins/Proxy/set/trap-is-undefined-no-property.js fails
built-ins/Proxy/set/trap-is-undefined-receiver.js fails
-built-ins/Proxy/set/trap-is-undefined.js fails
built-ins/Proxy/setPrototypeOf/call-parameters.js fails
built-ins/Proxy/setPrototypeOf/internals-call-order.js fails
built-ins/Proxy/setPrototypeOf/not-extensible-target-not-same-target-prototype.js fails
built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js fails
built-ins/Proxy/setPrototypeOf/null-handler.js fails
-built-ins/Proxy/setPrototypeOf/return-abrupt-from-get-trap.js fails
-built-ins/Proxy/setPrototypeOf/return-abrupt-from-isextensible-target.js fails
-built-ins/Proxy/setPrototypeOf/return-abrupt-from-target-getprototypeof.js fails
-built-ins/Proxy/setPrototypeOf/return-abrupt-from-trap.js fails
built-ins/Proxy/setPrototypeOf/toboolean-trap-result-false.js fails
built-ins/Proxy/setPrototypeOf/toboolean-trap-result-true-target-is-extensible.js fails
built-ins/Proxy/setPrototypeOf/trap-is-not-callable-realm.js fails
@@ -1040,16 +918,8 @@ built-ins/Proxy/setPrototypeOf/trap-is-not-callable.js fails
built-ins/Proxy/setPrototypeOf/trap-is-undefined-or-null.js fails
built-ins/Reflect/construct/newtarget-is-not-constructor-throws.js fails
built-ins/Reflect/construct/return-with-newtarget-argument.js fails
-built-ins/Reflect/defineProperty/return-abrupt-from-result.js fails
-built-ins/Reflect/deleteProperty/return-abrupt-from-result.js fails
built-ins/Reflect/get/return-value-from-receiver.js fails
-built-ins/Reflect/getOwnPropertyDescriptor/return-abrupt-from-result.js fails
-built-ins/Reflect/getPrototypeOf/return-abrupt-from-result.js fails
-built-ins/Reflect/has/return-abrupt-from-result.js fails
-built-ins/Reflect/isExtensible/return-abrupt-from-result.js fails
-built-ins/Reflect/ownKeys/return-abrupt-from-result.js fails
built-ins/Reflect/ownKeys/return-on-corresponding-order.js fails
-built-ins/Reflect/preventExtensions/return-abrupt-from-result.js fails
built-ins/Reflect/preventExtensions/return-boolean-from-proxy-object.js fails
built-ins/Reflect/set/creates-a-data-descriptor.js fails
built-ins/Reflect/set/different-property-descriptors.js fails
@@ -1058,7 +928,6 @@ built-ins/Reflect/set/return-false-if-target-is-not-writable.js fails
built-ins/Reflect/set/set-value-on-accessor-descriptor-with-receiver.js fails
built-ins/Reflect/set/set-value-on-data-descriptor.js fails
built-ins/Reflect/set/symbol-property.js fails
-built-ins/Reflect/setPrototypeOf/return-abrupt-from-result.js fails
built-ins/Reflect/setPrototypeOf/return-false-if-target-and-proto-are-the-same.js fails
built-ins/Reflect/setPrototypeOf/return-false-if-target-is-not-extensible.js fails
built-ins/Reflect/setPrototypeOf/return-false-if-target-is-prototype-of-proto.js fails
@@ -1919,7 +1788,6 @@ built-ins/TypedArrays/internals/GetOwnProperty/detached-buffer-realm.js fails
built-ins/TypedArrays/internals/GetOwnProperty/detached-buffer.js fails
built-ins/TypedArrays/internals/GetOwnProperty/enumerate-detached-buffer.js fails
built-ins/TypedArrays/internals/GetOwnProperty/index-prop-desc.js fails
-built-ins/TypedArrays/internals/HasProperty/abrupt-from-ordinary-has-parent-hasproperty.js fails
built-ins/TypedArrays/internals/HasProperty/detached-buffer-key-is-not-number.js fails
built-ins/TypedArrays/internals/HasProperty/detached-buffer-key-is-symbol.js fails
built-ins/TypedArrays/internals/HasProperty/detached-buffer-realm.js fails
@@ -1936,13 +1804,9 @@ built-ins/TypedArrays/internals/Set/detached-buffer-key-is-not-numeric-index.js
built-ins/TypedArrays/internals/Set/detached-buffer-key-is-symbol.js fails
built-ins/TypedArrays/internals/Set/detached-buffer-realm.js fails
built-ins/TypedArrays/internals/Set/detached-buffer.js fails
-built-ins/TypedArrays/internals/Set/indexed-value.js fails
built-ins/TypedArrays/internals/Set/key-is-minus-zero.js fails
-built-ins/TypedArrays/internals/Set/key-is-not-canonical-index.js fails
built-ins/TypedArrays/internals/Set/key-is-not-integer.js fails
-built-ins/TypedArrays/internals/Set/key-is-not-numeric-index.js fails
built-ins/TypedArrays/internals/Set/key-is-out-of-bounds.js fails
-built-ins/TypedArrays/internals/Set/key-is-symbol.js fails
built-ins/TypedArrays/internals/Set/tonumber-value-detached-buffer.js fails
built-ins/TypedArrays/internals/Set/tonumber-value-throws.js strictFails
built-ins/TypedArrays/of/argument-number-value-throws.js fails
@@ -4555,12 +4419,10 @@ language/statements/for-of/head-const-bound-names-fordecl-tdz.js fails
language/statements/for-of/head-const-fresh-binding-per-iteration.js fails
language/statements/for-of/head-let-bound-names-fordecl-tdz.js fails
language/statements/for-of/head-var-bound-names-let.js sloppyFails
-language/statements/for-of/iterator-as-proxy.js fails
language/statements/for-of/iterator-close-via-continue.js fails
language/statements/for-of/iterator-close-via-return.js fails
language/statements/for-of/iterator-close-via-throw.js fails
language/statements/for-of/iterator-next-reference.js fails
-language/statements/for-of/iterator-next-result-type.js fails
language/statements/for-of/scope-body-lex-open.js fails
language/statements/for-of/scope-head-lex-close.js fails
language/statements/for-of/scope-head-lex-open.js fails
diff --git a/tests/auto/qml/qjsengine/tst_qjsengine.cpp b/tests/auto/qml/qjsengine/tst_qjsengine.cpp
index 08f69618c4..796d9e9c34 100644
--- a/tests/auto/qml/qjsengine/tst_qjsengine.cpp
+++ b/tests/auto/qml/qjsengine/tst_qjsengine.cpp
@@ -973,6 +973,7 @@ void tst_QJSEngine::globalObjectProperties_enumerate()
<< "Set"
<< "Map"
<< "Reflect"
+ << "Proxy"
;
QSet<QString> actualNames;
{