| Index: dart/sdk/lib/_internal/compiler/implementation/constants.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/constants.dart b/dart/sdk/lib/_internal/compiler/implementation/constants.dart
|
| index 6b320417656c3ee290a2df2fd5ff782fb305a253..5e3a42942ea87b667f53b0d0062b0e1fb72eb5b9 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/constants.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/constants.dart
|
| @@ -91,6 +91,8 @@ abstract class PrimitiveConstant extends Constant {
|
| return value == otherPrimitive.value;
|
| }
|
|
|
| + int get hashCode => throw new UnsupportedError('PrimitiveConstant.hashCode');
|
| +
|
| String toString() => value.toString();
|
| // Primitive constants don't have dependencies.
|
| List<Constant> getDependencies() => const <Constant>[];
|
|
|