| 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
|
| deleted file mode 100644
|
| index c7727d4230ad2332be4fd95506e902cf7115e6eb..0000000000000000000000000000000000000000
|
| --- a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
|
| +++ /dev/null
|
| @@ -1,122 +0,0 @@
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| -class _IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements IDBObjectStore {
|
| - _IDBObjectStoreWrappingImplementation() : super() {}
|
| -
|
| - static create__IDBObjectStoreWrappingImplementation() native {
|
| - return new _IDBObjectStoreWrappingImplementation();
|
| - }
|
| -
|
| - List<String> get indexNames() { return _get_indexNames(this); }
|
| - static List<String> _get_indexNames(var _this) native;
|
| -
|
| - String get keyPath() { return _get_keyPath(this); }
|
| - static String _get_keyPath(var _this) native;
|
| -
|
| - String get name() { return _get_name(this); }
|
| - static String _get_name(var _this) native;
|
| -
|
| - IDBTransaction get transaction() { return _get_transaction(this); }
|
| - static IDBTransaction _get_transaction(var _this) native;
|
| -
|
| - IDBRequest add(Dynamic value, [IDBKey key = null]) {
|
| - if (key === null) {
|
| - return _add(this, value);
|
| - } else {
|
| - return _add_2(this, value, key);
|
| - }
|
| - }
|
| - static IDBRequest _add(receiver, value) native;
|
| - static IDBRequest _add_2(receiver, value, key) native;
|
| -
|
| - IDBRequest clear() {
|
| - return _clear(this);
|
| - }
|
| - static IDBRequest _clear(receiver) native;
|
| -
|
| - IDBRequest count([var key_OR_range = null]) {
|
| - if (key_OR_range === null) {
|
| - return _count(this);
|
| - } else {
|
| - if (key_OR_range is IDBKeyRange) {
|
| - return _count_2(this, key_OR_range);
|
| - } else {
|
| - if (key_OR_range is IDBKey) {
|
| - return _count_3(this, key_OR_range);
|
| - }
|
| - }
|
| - }
|
| - throw "Incorrect number or type of arguments";
|
| - }
|
| - static IDBRequest _count(receiver) native;
|
| - static IDBRequest _count_2(receiver, key_OR_range) native;
|
| - static IDBRequest _count_3(receiver, key_OR_range) native;
|
| -
|
| - IDBIndex createIndex(String name, String keyPath) {
|
| - return _createIndex(this, name, keyPath);
|
| - }
|
| - static IDBIndex _createIndex(receiver, name, keyPath) native;
|
| -
|
| - IDBRequest delete(var key_OR_keyRange) {
|
| - if (key_OR_keyRange is IDBKeyRange) {
|
| - return _delete(this, key_OR_keyRange);
|
| - } else {
|
| - if (key_OR_keyRange is IDBKey) {
|
| - return _delete_2(this, key_OR_keyRange);
|
| - }
|
| - }
|
| - throw "Incorrect number or type of arguments";
|
| - }
|
| - static IDBRequest _delete(receiver, key_OR_keyRange) native;
|
| - static IDBRequest _delete_2(receiver, key_OR_keyRange) native;
|
| -
|
| - void deleteIndex(String name) {
|
| - _deleteIndex(this, name);
|
| - return;
|
| - }
|
| - static void _deleteIndex(receiver, name) native;
|
| -
|
| - IDBRequest getObject(IDBKey key) {
|
| - return _getObject(this, key);
|
| - }
|
| - static IDBRequest _getObject(receiver, key) native;
|
| -
|
| - IDBIndex index(String name) {
|
| - return _index(this, name);
|
| - }
|
| - static IDBIndex _index(receiver, name) native;
|
| -
|
| - IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) {
|
| - if (range === null) {
|
| - if (direction === null) {
|
| - return _openCursor(this);
|
| - }
|
| - } else {
|
| - if (direction === null) {
|
| - return _openCursor_2(this, range);
|
| - } else {
|
| - return _openCursor_3(this, range, direction);
|
| - }
|
| - }
|
| - throw "Incorrect number or type of arguments";
|
| - }
|
| - static IDBRequest _openCursor(receiver) native;
|
| - static IDBRequest _openCursor_2(receiver, range) native;
|
| - static IDBRequest _openCursor_3(receiver, range, direction) native;
|
| -
|
| - IDBRequest put(Dynamic value, [IDBKey key = null]) {
|
| - if (key === null) {
|
| - return _put(this, value);
|
| - } else {
|
| - return _put_2(this, value, key);
|
| - }
|
| - }
|
| - static IDBRequest _put(receiver, value) native;
|
| - static IDBRequest _put_2(receiver, value, key) native;
|
| -
|
| - String get typeName() { return "IDBObjectStore"; }
|
| -}
|
|
|