LibWeb/IDB: Implement inject_a_key_into_a_value_using_a_key_path

This commit is contained in:
stelar7 2025-04-11 11:28:11 +02:00 committed by Andrew Kaster
commit 7fa3bd00b5
Notes: github-actions[bot] 2025-04-23 18:37:20 +00:00
2 changed files with 50 additions and 0 deletions

View file

@ -38,5 +38,6 @@ void fire_a_success_event(JS::Realm&, GC::Ref<IDBRequest>);
GC::Ref<IDBRequest> asynchronously_execute_a_request(JS::Realm&, IDBRequestSource, GC::Ref<GC::Function<WebIDL::ExceptionOr<JS::Value>()>>, GC::Ptr<IDBRequest> = nullptr);
ErrorOr<u64> generate_a_key(GC::Ref<ObjectStore>);
void possibly_update_the_key_generator(GC::Ref<ObjectStore>, GC::Ref<Key>);
void inject_a_key_into_a_value_using_a_key_path(JS::Realm&, JS::Value, GC::Ref<Key>, KeyPath const&);
}