| 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 06e04fc9325137cfe2fa58adf64ffd0b577f7cac..5a78207c50da3d553dbffe889b8b51afdca05950 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/constants.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/constants.dart
|
| @@ -108,6 +108,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>[];
|
|
|