@@ -2065,7 +2065,7 @@ class LengthList extends JavaScriptObject
2065
2065
// -- start List<Length> mixins.
2066
2066
// Length is the element type.
2067
2067
2068
- set length (int value ) {
2068
+ set length (int newLength ) {
2069
2069
throw new UnsupportedError ("Cannot resize immutable List." );
2070
2070
}
2071
2071
@@ -2390,7 +2390,7 @@ class NumberList extends JavaScriptObject
2390
2390
// -- start List<Number> mixins.
2391
2391
// Number is the element type.
2392
2392
2393
- set length (int value ) {
2393
+ set length (int newLength ) {
2394
2394
throw new UnsupportedError ("Cannot resize immutable List." );
2395
2395
}
2396
2396
@@ -2873,7 +2873,7 @@ class StringList extends JavaScriptObject
2873
2873
// -- start List<String> mixins.
2874
2874
// String is the element type.
2875
2875
2876
- set length (int value ) {
2876
+ set length (int newLength ) {
2877
2877
throw new UnsupportedError ("Cannot resize immutable List." );
2878
2878
}
2879
2879
@@ -3862,7 +3862,7 @@ class TransformList extends JavaScriptObject
3862
3862
// -- start List<Transform> mixins.
3863
3863
// Transform is the element type.
3864
3864
3865
- set length (int value ) {
3865
+ set length (int newLength ) {
3866
3866
throw new UnsupportedError ("Cannot resize immutable List." );
3867
3867
}
3868
3868
0 commit comments