script: Implement converting values to indexeddb key ranges (#38278)

Implements
https://www.w3.org/TR/IndexedDB-2/#convert-a-value-to-a-key-range. Part
of #38187.

Testing: Currently unused, doesn't change anything
Fixes: None

Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
This commit is contained in:
Ashwin Naren 2025-07-26 18:50:52 +05:30 committed by GitHub
parent f8d6c5646c
commit e1bda86861
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 31 additions and 4 deletions

View file

@ -35,7 +35,6 @@ impl IDBKeyRange {
reflect_dom_object(Box::new(IDBKeyRange::new_inherited(inner)), global, can_gc)
}
#[expect(unused)]
pub fn inner(&self) -> &IndexedDBKeyRange {
&self.inner
}