| Index: test/dart_codegen/expect/core/double.dart
|
| diff --git a/test/dart_codegen/expect/core/double.dart b/test/dart_codegen/expect/core/double.dart
|
| index 54c5b263de83e8a22c85b11ee0a0ea11fabc2f57..a4bbae20a42116180d9b2296f2152177ac7576af 100644
|
| --- a/test/dart_codegen/expect/core/double.dart
|
| +++ b/test/dart_codegen/expect/core/double.dart
|
| @@ -1,33 +1,29 @@
|
| part of dart.core;
|
| -
|
| -abstract class double extends num {
|
| - static const double NAN = 0.0 / 0.0;
|
| - static const double INFINITY = 1.0 / 0.0;
|
| - static const double NEGATIVE_INFINITY = -INFINITY;
|
| - static const double MIN_POSITIVE = 5e-324;
|
| - static const double MAX_FINITE = 1.7976931348623157e+308;
|
| - double remainder(num other);
|
| - double operator +(num other);
|
| - double operator -(num other);
|
| - double operator *(num other);
|
| - double operator %(num other);
|
| - double operator /(num other);
|
| - int operator ~/(num other);
|
| - double operator -();
|
| - double abs();
|
| - double get sign;
|
| - int round();
|
| - int floor();
|
| - int ceil();
|
| - int truncate();
|
| - double roundToDouble();
|
| - double floorToDouble();
|
| - double ceilToDouble();
|
| - double truncateToDouble();
|
| - String toString();
|
| - static double parse(String source, [double onError(String source)]) {
|
| - return ((__x10) => DDC$RT.cast(__x10, dynamic, double, "CastGeneral",
|
| - """line 206, column 12 of dart:core/double.dart: """, __x10 is double,
|
| - true))(Primitives.parseDouble(source, onError));
|
| + abstract class double extends num {static const double NAN = 0.0 / 0.0;
|
| + static const double INFINITY = 1.0 / 0.0;
|
| + static const double NEGATIVE_INFINITY = -INFINITY;
|
| + static const double MIN_POSITIVE = 5e-324;
|
| + static const double MAX_FINITE = 1.7976931348623157e+308;
|
| + double remainder(num other);
|
| + double operator +(num other);
|
| + double operator -(num other);
|
| + double operator *(num other);
|
| + double operator %(num other);
|
| + double operator /(num other);
|
| + int operator ~/(num other);
|
| + double operator -();
|
| + double abs();
|
| + double get sign;
|
| + int round();
|
| + int floor();
|
| + int ceil();
|
| + int truncate();
|
| + double roundToDouble();
|
| + double floorToDouble();
|
| + double ceilToDouble();
|
| + double truncateToDouble();
|
| + String toString();
|
| + static double parse(String source, [double onError(String source)]) {
|
| + return ((__x10) => DDC$RT.cast(__x10, dynamic, double, "CastGeneral", """line 206, column 12 of dart:core/double.dart: """, __x10 is double, true))(Primitives.parseDouble(source, onError));
|
| }
|
| }
|
|
|