Index: runtime/lib/double.dart |
diff --git a/runtime/lib/double.dart b/runtime/lib/double.dart |
index 2fd2e974b3a647739fe5ff37349472818dc184d5..6a532ef98ade78dcafea189b81851b4945f5fb2a 100644 |
--- a/runtime/lib/double.dart |
+++ b/runtime/lib/double.dart |
@@ -275,11 +275,4 @@ class _Double implements double { |
return LESS; |
} |
} |
- |
- static const int _FRACTIONAL_BITS = // Bits to keep after the decimal point. |
- const int.fromEnvironment("doubleFractionalBits", defaultValue: 20); |
- static const double _BIAS = 1.5 * (1 << (52 - _FRACTIONAL_BITS)); |
- |
- // Returns this with only _FRACTIONAL_BITS bits after the decimal point. |
- double get p => this + _BIAS - _BIAS; |
} |