| OLD | NEW |
| 1 | 1 |
| 2 class FileWriter native "*FileWriter" { | 2 class FileWriter native "*FileWriter" { |
| 3 | 3 |
| 4 static final int DONE = 2; |
| 5 |
| 6 static final int INIT = 0; |
| 7 |
| 8 static final int WRITING = 1; |
| 9 |
| 4 FileError error; | 10 FileError error; |
| 5 | 11 |
| 6 int length; | 12 int length; |
| 7 | 13 |
| 8 int position; | 14 int position; |
| 9 | 15 |
| 10 int readyState; | 16 int readyState; |
| 11 | 17 |
| 12 void abort() native; | 18 void abort() native; |
| 13 | 19 |
| 14 void seek(int position) native; | 20 void seek(int position) native; |
| 15 | 21 |
| 16 void truncate(int size) native; | 22 void truncate(int size) native; |
| 17 | 23 |
| 18 void write(Blob data) native; | 24 void write(Blob data) native; |
| 19 | 25 |
| 20 var dartObjectLocalStorage; | 26 var dartObjectLocalStorage; |
| 21 | 27 |
| 22 String get typeName() native; | 28 String get typeName() native; |
| 23 } | 29 } |
| OLD | NEW |