| Index: runtime/lib/double.dart
|
| diff --git a/runtime/lib/double.dart b/runtime/lib/double.dart
|
| index 2fd2e974b3a647739fe5ff37349472818dc184d5..34d780341d79f5626343c093d839ea07332d3f95 100644
|
| --- a/runtime/lib/double.dart
|
| +++ b/runtime/lib/double.dart
|
| @@ -6,6 +6,8 @@ class _Double implements double {
|
| factory _Double.fromInteger(int value)
|
| native "Double_doubleFromInteger";
|
|
|
| + Type get runtimeType => double;
|
| +
|
| // TODO: Make a stared static method for hashCode and _identityHashCode
|
| // when semantics are corrected as described in:
|
| // https://github.com/dart-lang/sdk/issues/2884
|
|
|