| OLD | NEW |
| 1 | 1 |
| 2 class TouchList native "*TouchList" { | 2 class TouchList native "*TouchList" { |
| 3 | 3 |
| 4 int length; | 4 int length; |
| 5 | 5 |
| 6 Touch operator[](int index) native; | 6 Touch operator[](int index) native; |
| 7 | 7 |
| 8 void operator[]=(int index, Touch value) { | |
| 9 throw new UnsupportedOperationException("Cannot assign element of immutable
List."); | |
| 10 } | |
| 11 | |
| 12 Touch item(int index) native; | 8 Touch item(int index) native; |
| 13 | 9 |
| 14 var dartObjectLocalStorage; | 10 var dartObjectLocalStorage; |
| 15 | 11 |
| 16 String get typeName() native; | 12 String get typeName() native; |
| 17 } | 13 } |
| OLD | NEW |