LibWeb/IDB: Implement IDBCursor::continue

This commit is contained in:
stelar7 2025-04-29 17:48:27 +02:00 committed by Jelle Raaijmakers
commit 64c4bea189
Notes: github-actions[bot] 2025-05-06 09:17:37 +00:00
4 changed files with 82 additions and 15 deletions

View file

@ -47,6 +47,8 @@ public:
void set_value(JS::Value value) { m_value = value; }
void set_object_store_position(GC::Ptr<Key> object_store_position) { m_object_store_position = object_store_position; }
WebIDL::ExceptionOr<void> continue_(JS::Value);
protected:
explicit IDBCursor(JS::Realm&, GC::Ref<IDBTransaction>, GC::Ptr<Key>, Bindings::IDBCursorDirection, bool, GC::Ptr<Key>, JS::Value, CursorSource, GC::Ref<IDBKeyRange>, bool);
virtual void initialize(JS::Realm&) override;