| Index: client/dom/generated/src/frog/IDBCursor.dart
|
| diff --git a/client/dom/generated/src/frog/IDBCursor.dart b/client/dom/generated/src/frog/IDBCursor.dart
|
| index 2eaa01de4ec30fd1a5f901e92094c16b49a4330d..4210ea1574a108f22ecec71d6ebed385c6ace235 100644
|
| --- a/client/dom/generated/src/frog/IDBCursor.dart
|
| +++ b/client/dom/generated/src/frog/IDBCursor.dart
|
| @@ -1,5 +1,5 @@
|
|
|
| -class IDBCursor native "*IDBCursor" {
|
| +class IDBCursorJS implements IDBCursor native "*IDBCursor" {
|
|
|
| static final int NEXT = 0;
|
|
|
| @@ -11,17 +11,17 @@ class IDBCursor native "*IDBCursor" {
|
|
|
| int get direction() native "return this.direction;";
|
|
|
| - IDBKey get key() native "return this.key;";
|
| + IDBKeyJS get key() native "return this.key;";
|
|
|
| - IDBKey get primaryKey() native "return this.primaryKey;";
|
| + IDBKeyJS get primaryKey() native "return this.primaryKey;";
|
|
|
| - IDBAny get source() native "return this.source;";
|
| + IDBAnyJS get source() native "return this.source;";
|
|
|
| - void continueFunction([IDBKey key = null]) native;
|
| + void continueFunction([IDBKeyJS key = null]) native;
|
|
|
| - IDBRequest delete() native;
|
| + IDBRequestJS delete() native;
|
|
|
| - IDBRequest update(String value) native;
|
| + IDBRequestJS update(String value) native;
|
|
|
| var dartObjectLocalStorage;
|
|
|
|
|