| OLD | NEW |
| 1 | 1 |
| 2 class StyleSheetList native "*StyleSheetList" { | 2 class StyleSheetList native "*StyleSheetList" { |
| 3 | 3 |
| 4 int length; | 4 int length; |
| 5 | 5 |
| 6 StyleSheet operator[](int index) native; | 6 StyleSheet operator[](int index) native; |
| 7 | 7 |
| 8 void operator[]=(int index, StyleSheet value) { | |
| 9 throw new UnsupportedOperationException("Cannot assign element of immutable
List."); | |
| 10 } | |
| 11 | |
| 12 StyleSheet item(int index) native; | 8 StyleSheet 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 |