From a88f01364e147d9ea093bf0fdc639b45feef1788 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Thu, 2 Aug 2018 16:54:59 +0200 Subject: Implement ObjectIterator using the new iteration mechanism And with that get rid of the old advanceIterator methods. Change-Id: I969fa89d25df8992a4b08c8c081b91c92ffdfddd Reviewed-by: Simon Hausmann --- src/qml/jsruntime/qv4object_p.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/qml/jsruntime/qv4object_p.h') diff --git a/src/qml/jsruntime/qv4object_p.h b/src/qml/jsruntime/qv4object_p.h index 3f1eb2d537..431c378334 100644 --- a/src/qml/jsruntime/qv4object_p.h +++ b/src/qml/jsruntime/qv4object_p.h @@ -353,8 +353,6 @@ public: bool deleteProperty(PropertyKey id) { return vtable()->deleteProperty(this, id); } - void advanceIterator(ObjectIterator *it, Value *name, uint *index, Property *p, PropertyAttributes *attributes) - { vtable()->advanceIterator(this, it, name, index, p, attributes); } OwnPropertyKeyIterator *ownPropertyKeys() const { return vtable()->ownPropertyKeys(this); } qint64 getLength() const { return vtable()->getLength(this); } @@ -377,7 +375,6 @@ protected: static bool virtualPreventExtensions(Managed *); static Heap::Object *virtualGetPrototypeOf(const Managed *); static bool virtualSetPrototypeOf(Managed *, const Object *); - static void virtualAdvanceIterator(Managed *m, ObjectIterator *it, Value *name, uint *index, Property *p, PropertyAttributes *attributes); static OwnPropertyKeyIterator *virtualOwnPropertyKeys(const Object *m); static qint64 virtualGetLength(const Managed *m); static ReturnedValue virtualInstanceOf(const Object *typeObject, const Value &var); -- cgit v1.2.3