| Index: tools/dom/src/native_DOMImplementation.dart
|
| diff --git a/tools/dom/src/native_DOMImplementation.dart b/tools/dom/src/native_DOMImplementation.dart
|
| index 84d9af80bdc0582fc8c3e4f1c1ae9dd10b378fef..2f91ab1af597278ba9cf1d724cd1dcd956ba8b52 100644
|
| --- a/tools/dom/src/native_DOMImplementation.dart
|
| +++ b/tools/dom/src/native_DOMImplementation.dart
|
| @@ -8,7 +8,7 @@ class _Utils {
|
| static List convertToList(List list) {
|
| // FIXME: [possible optimization]: do not copy the array if Dart_IsArray is fine w/ it.
|
| final length = list.length;
|
| - List result = new List(length);
|
| + List result = new List.fixedLength(length);
|
| result.setRange(0, length, list);
|
| return result;
|
| }
|
|
|