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

Side by Side Diff: test/dart_codegen/expect/core/double.dart

Issue 1148283010: Remove dart backend (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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
(Empty)
1 part of dart.core;
2 abstract class double extends num {static const double NAN = 0.0 / 0.0;
3 static const double INFINITY = 1.0 / 0.0;
4 static const double NEGATIVE_INFINITY = -INFINITY;
5 static const double MIN_POSITIVE = 5e-324;
6 static const double MAX_FINITE = 1.7976931348623157e+308;
7 double remainder(num other);
8 double operator +(num other);
9 double operator -(num other);
10 double operator *(num other);
11 double operator %(num other);
12 double operator /(num other);
13 int operator ~/(num other);
14 double operator -();
15 double abs();
16 double get sign;
17 int round();
18 int floor();
19 int ceil();
20 int truncate();
21 double roundToDouble();
22 double floorToDouble();
23 double ceilToDouble();
24 double truncateToDouble();
25 String toString();
26 external static double parse(String source, [double onError(String source)]);
27 }
OLDNEW
« no previous file with comments | « test/dart_codegen/expect/core/date_time.dart ('k') | test/dart_codegen/expect/core/duration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698