Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(512)

Unified Diff: test/dart_codegen/expect/core/double.dart

Issue 963593002: Disable formatting and add new-lines to make tests faster. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));
}
}

Powered by Google App Engine
This is Rietveld 408576698