| Index: dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/warnings.dart b/dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| index 9368f89b78795300d2c5a32589128409d46e88c7..ea9e56bbc292acd29f88676f1e2e2f5a6dfe9bd0 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/warnings.dart
|
| @@ -600,6 +600,8 @@ class Message {
|
| return (kind == other.kind) && (toString() == other.toString());
|
| }
|
|
|
| + int get hashCode => throw new UnsupportedError('Message.hashCode');
|
| +
|
| String slowToString(object) {
|
| if (object is SourceString) {
|
| return object.slowToString();
|
|
|