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

Side by Side 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 unified diff | Download patch
OLDNEW
1 part of dart.core; 1 part of dart.core;
2 2 abstract class double extends num {static const double NAN = 0.0 / 0.0;
3 abstract class double extends num { 3 static const double INFINITY = 1.0 / 0.0;
4 static const double NAN = 0.0 / 0.0; 4 static const double NEGATIVE_INFINITY = -INFINITY;
5 static const double INFINITY = 1.0 / 0.0; 5 static const double MIN_POSITIVE = 5e-324;
6 static const double NEGATIVE_INFINITY = -INFINITY; 6 static const double MAX_FINITE = 1.7976931348623157e+308;
7 static const double MIN_POSITIVE = 5e-324; 7 double remainder(num other);
8 static const double MAX_FINITE = 1.7976931348623157e+308; 8 double operator +(num other);
9 double remainder(num other); 9 double operator -(num other);
10 double operator +(num other); 10 double operator *(num other);
11 double operator -(num other); 11 double operator %(num other);
12 double operator *(num other); 12 double operator /(num other);
13 double operator %(num other); 13 int operator ~/(num other);
14 double operator /(num other); 14 double operator -();
15 int operator ~/(num other); 15 double abs();
16 double operator -(); 16 double get sign;
17 double abs(); 17 int round();
18 double get sign; 18 int floor();
19 int round(); 19 int ceil();
20 int floor(); 20 int truncate();
21 int ceil(); 21 double roundToDouble();
22 int truncate(); 22 double floorToDouble();
23 double roundToDouble(); 23 double ceilToDouble();
24 double floorToDouble(); 24 double truncateToDouble();
25 double ceilToDouble(); 25 String toString();
26 double truncateToDouble(); 26 static double parse(String source, [double onError(String source)]) {
27 String toString(); 27 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));
28 static double parse(String source, [double onError(String source)]) {
29 return ((__x10) => DDC$RT.cast(__x10, dynamic, double, "CastGeneral",
30 """line 206, column 12 of dart:core/double.dart: """, __x10 is double,
31 true))(Primitives.parseDouble(source, onError));
32 } 28 }
33 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698