| 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 fd4ee45a99e84d9a531cb656e1d909546a0654ff..64ca1316af34684898cf882610c6e564fa95a417 100644
|
| --- a/client/dom/generated/src/frog/IDBTransaction.dart
|
| +++ b/client/dom/generated/src/frog/IDBTransaction.dart
|
| @@ -7,21 +7,15 @@ class _IDBTransactionJs extends _DOMTypeJs implements IDBTransaction native "*ID
|
|
|
| static final int VERSION_CHANGE = 2;
|
|
|
| - _IDBDatabaseJs get db() native "return this.db;";
|
| + final _IDBDatabaseJs db;
|
|
|
| - int get mode() native "return this.mode;";
|
| + final int mode;
|
|
|
| - EventListener get onabort() native "return this.onabort;";
|
| + EventListener onabort;
|
|
|
| - void set onabort(EventListener value) native "this.onabort = value;";
|
| + EventListener oncomplete;
|
|
|
| - 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;";
|
| + EventListener onerror;
|
|
|
| void abort() native;
|
|
|
|
|