Index: client/dom/generated/src/frog/IDBRequest.dart |
diff --git a/client/dom/generated/src/frog/IDBRequest.dart b/client/dom/generated/src/frog/IDBRequest.dart |
index 2c5b9efe9238705299aebc007ab4297cb347300b..8f3a01d93fe2c317066bef79a8b764a62707fad5 100644 |
--- a/client/dom/generated/src/frog/IDBRequest.dart |
+++ b/client/dom/generated/src/frog/IDBRequest.dart |
@@ -5,21 +5,25 @@ class IDBRequest native "*IDBRequest" { |
static final int LOADING = 1; |
- int errorCode; |
+ int get errorCode() native "return this.errorCode;"; |
- EventListener onerror; |
+ EventListener get onerror() native "return this.onerror;"; |
- EventListener onsuccess; |
+ void set onerror(EventListener value) native "this.onerror = value;"; |
- int readyState; |
+ EventListener get onsuccess() native "return this.onsuccess;"; |
- IDBAny result; |
+ void set onsuccess(EventListener value) native "this.onsuccess = value;"; |
- IDBAny source; |
+ int get readyState() native "return this.readyState;"; |
- IDBTransaction transaction; |
+ IDBAny get result() native "return this.result;"; |
- String webkitErrorMessage; |
+ IDBAny get source() native "return this.source;"; |
+ |
+ IDBTransaction get transaction() native "return this.transaction;"; |
+ |
+ String get webkitErrorMessage() native "return this.webkitErrorMessage;"; |
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; |