| Index: client/dom/generated/src/frog/IDBTransaction.dart
|
| diff --git a/client/dom/generated/src/frog/IDBTransaction.dart b/client/dom/generated/src/frog/IDBTransaction.dart
|
| index ab97bd21b681330b298f240ae45d3c941f441257..2c1a2989d5163f6afdbc072c4e0fde8647885fc0 100644
|
| --- a/client/dom/generated/src/frog/IDBTransaction.dart
|
| +++ b/client/dom/generated/src/frog/IDBTransaction.dart
|
| @@ -7,15 +7,21 @@ class IDBTransaction native "*IDBTransaction" {
|
|
|
| static final int VERSION_CHANGE = 2;
|
|
|
| - IDBDatabase db;
|
| + IDBDatabase get db() native "return this.db;";
|
|
|
| - int mode;
|
| + int get mode() native "return this.mode;";
|
|
|
| - EventListener onabort;
|
| + EventListener get onabort() native "return this.onabort;";
|
|
|
| - EventListener oncomplete;
|
| + void set onabort(EventListener value) native "this.onabort = value;";
|
|
|
| - EventListener onerror;
|
| + EventListener get oncomplete() native "return this.oncomplete;";
|
| +
|
| + void set oncomplete(EventListener value) native "this.oncomplete = value;";
|
| +
|
| + EventListener get onerror() native "return this.onerror;";
|
| +
|
| + void set onerror(EventListener value) native "this.onerror = value;";
|
|
|
| void abort() native;
|
|
|
|
|