Chromium Code Reviews| Index: dart/tests/compiler/dart2js/analyze_dart2js_test.dart |
| diff --git a/dart/tests/compiler/dart2js/analyze_dart2js_test.dart b/dart/tests/compiler/dart2js/analyze_dart2js_test.dart |
| index cb66fdf9959c35d4e9b6651b8c370e8442edb963..ead8477029819bd3433e072d8560da31bd3b3f91 100644 |
| --- a/dart/tests/compiler/dart2js/analyze_dart2js_test.dart |
| +++ b/dart/tests/compiler/dart2js/analyze_dart2js_test.dart |
| @@ -20,6 +20,86 @@ import 'analyze_helper.dart'; |
| // TODO(johnniwinther): Support canonical URIs as keys and message kinds as |
| // values. |
| const Map<String,List<String>> WHITE_LIST = const { |
| + 'sdk/lib/_internal/compiler/implementation/constants.dart': |
|
ahe
2013/06/24 19:17:53
These will be removed in an updated version of CL
|
| + const [ |
| + 'Warning: The class "PrimitiveConstant" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/dart_types.dart': |
| + const [ |
| + 'Warning: The class "MalformedType" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + 'Warning: The class "InterfaceType" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + 'Warning: The class "TypedefType" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + |
| + 'sdk/lib/_internal/compiler/implementation/ssa/types.dart': |
| + const [ |
| + 'Warning: The class "HBoundedType" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/ssa/value_range_analyzer.dart': |
| + const [ |
| + 'Warning: The class "IntValue" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + 'Warning: The class "InstructionValue" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + 'Warning: The class "AddValue" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + 'Warning: The class "SubtractValue" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + 'Warning: The class "NegateValue" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + 'Warning: The class "Range" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/tree/dartstring.dart': |
| + const [ |
| + 'Warning: The class "DartString" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/types/container_type_mask.dart': |
| + const [ |
| + 'Warning: The class "ContainerTypeMask" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/types/element_type_mask.dart': |
| + const [ |
| + 'Warning: The class "ElementTypeMask" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/types/simple_types_inferrer.dart': |
| + const [ |
| + 'Warning: The class "ArgumentsTypes" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/types/union_type_mask.dart': |
| + const [ |
| + 'Warning: The class "UnionTypeMask" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/universe/side_effects.dart': |
| + const [ |
| + 'Warning: The class "SideEffects" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/util/link.dart': |
| + const [ |
| + 'Warning: The class "Link" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/util/link_implementation.dart': |
| + const [ |
| + 'Warning: The class "LinkEntry" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| + 'sdk/lib/_internal/compiler/implementation/warnings.dart': |
| + const [ |
| + 'Warning: The class "Message" overrides "operator==", ' |
| + 'but not "get hashCode".', |
| + ], |
| }; |
| void main() { |