| OLD | NEW |
| 1 | 1 |
| 2 class DOMExceptionJS implements DOMException native "*DOMException" { | 2 class DOMExceptionJs extends DOMTypeJs implements DOMException native "*DOMExcep
tion" { |
| 3 | 3 |
| 4 static final int ABORT_ERR = 20; | 4 static final int ABORT_ERR = 20; |
| 5 | 5 |
| 6 static final int DATA_CLONE_ERR = 25; | 6 static final int DATA_CLONE_ERR = 25; |
| 7 | 7 |
| 8 static final int DOMSTRING_SIZE_ERR = 2; | 8 static final int DOMSTRING_SIZE_ERR = 2; |
| 9 | 9 |
| 10 static final int HIERARCHY_REQUEST_ERR = 3; | 10 static final int HIERARCHY_REQUEST_ERR = 3; |
| 11 | 11 |
| 12 static final int INDEX_SIZE_ERR = 1; | 12 static final int INDEX_SIZE_ERR = 1; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 | 51 |
| 52 static final int WRONG_DOCUMENT_ERR = 4; | 52 static final int WRONG_DOCUMENT_ERR = 4; |
| 53 | 53 |
| 54 int get code() native "return this.code;"; | 54 int get code() native "return this.code;"; |
| 55 | 55 |
| 56 String get message() native "return this.message;"; | 56 String get message() native "return this.message;"; |
| 57 | 57 |
| 58 String get name() native "return this.name;"; | 58 String get name() native "return this.name;"; |
| 59 | 59 |
| 60 String toString() native; | 60 String toString() native; |
| 61 | |
| 62 var dartObjectLocalStorage; | |
| 63 | |
| 64 String get typeName() native; | |
| 65 } | 61 } |
| OLD | NEW |