| Index: tests/compiler/dart2js/value_range_test.dart
|
| diff --git a/tests/compiler/dart2js/value_range_test.dart b/tests/compiler/dart2js/value_range_test.dart
|
| index 89dfabc933e2414fcb7e2d98b33eae88a3f4133c..5ea7ee64e08eb5e4bac147bee93398ef31d8c8a7 100644
|
| --- a/tests/compiler/dart2js/value_range_test.dart
|
| +++ b/tests/compiler/dart2js/value_range_test.dart
|
| @@ -328,6 +328,11 @@ const String INTERCEPTORSLIB_WITH_MEMBERS = r'''
|
| class JSDouble extends JSNumber {
|
| }
|
| class JSNull {
|
| + bool operator==(other) => identical(null, other);
|
| + get hashCode => throw "JSNull.hashCode not implemented.";
|
| + String toString() => 'Null';
|
| + Type get runtimeType => Null;
|
| + noSuchMethod(x) => super.noSuchMethod(x);
|
| }
|
| class JSBool {
|
| }
|
|
|