| Index: dart/tests/compiler/dart2js/value_range_test.dart
|
| diff --git a/dart/tests/compiler/dart2js/value_range_test.dart b/dart/tests/compiler/dart2js/value_range_test.dart
|
| index 5b2103ad353ee19eb4c99033f300df0ef9644719..97165dde651be8a27065f71186594e058d1f633f 100644
|
| --- a/dart/tests/compiler/dart2js/value_range_test.dart
|
| +++ b/dart/tests/compiler/dart2js/value_range_test.dart
|
| @@ -211,7 +211,10 @@ const String DEFAULT_CORELIB_WITH_LIST_INTERFACE = r'''
|
| class Object {}
|
| class Type {}
|
| class Function {}
|
| - class List { List([length]); }
|
| + class List {
|
| + List();
|
| + List.fixedLength(length);
|
| + }
|
| abstract class Map {}
|
| class Closure {}
|
| class Null {}
|
|
|