| Index: runtime/lib/double.dart
|
| diff --git a/runtime/lib/double.dart b/runtime/lib/double.dart
|
| index 6480f5d7a47b9d78ea1339c815c182cdc87f1fe8..c5b2c38156fadf276781a60003f152997041159b 100644
|
| --- a/runtime/lib/double.dart
|
| +++ b/runtime/lib/double.dart
|
| @@ -96,6 +96,7 @@ class _Double implements double {
|
| bool get isNegative native "Double_getIsNegative";
|
| bool get isInfinite native "Double_getIsInfinite";
|
| bool get isNaN native "Double_getIsNaN";
|
| + bool get isFinite => !isInfinite && !isNaN; // Can be optimized.
|
|
|
| double abs() {
|
| // Handle negative 0.0.
|
|
|