| 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 8a4eb7b3d809856d633ee282e965f7212eda845b..2eaa01de4ec30fd1a5f901e92094c16b49a4330d 100644
|
| --- a/client/dom/generated/src/frog/IDBCursor.dart
|
| +++ b/client/dom/generated/src/frog/IDBCursor.dart
|
| @@ -9,13 +9,13 @@ class IDBCursor native "*IDBCursor" {
|
|
|
| static final int PREV_NO_DUPLICATE = 3;
|
|
|
| - int direction;
|
| + int get direction() native "return this.direction;";
|
|
|
| - IDBKey key;
|
| + IDBKey get key() native "return this.key;";
|
|
|
| - IDBKey primaryKey;
|
| + IDBKey get primaryKey() native "return this.primaryKey;";
|
|
|
| - IDBAny source;
|
| + IDBAny get source() native "return this.source;";
|
|
|
| void continueFunction([IDBKey key = null]) native;
|
|
|
|
|