| Index: client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
|
| index 48dc37f10b90af539e4f2e5a6ca0e8b8f1e61ae7..5aa02627e889e05e8dd482812987405b1df5aabb 100644
|
| --- a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
|
| @@ -35,6 +35,16 @@ class _IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements ID
|
| }
|
| static IDBRequest _clear(receiver) native;
|
|
|
| + IDBRequest count([IDBKeyRange range = null]) {
|
| + if (range === null) {
|
| + return _count(this);
|
| + } else {
|
| + return _count_2(this, range);
|
| + }
|
| + }
|
| + static IDBRequest _count(receiver) native;
|
| + static IDBRequest _count_2(receiver, range) native;
|
| +
|
| IDBIndex createIndex(String name, String keyPath) {
|
| return _createIndex(this, name, keyPath);
|
| }
|
|
|