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

Unified 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, 7 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
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
deleted file mode 100644
index 730138aaf84de21a2a6cf08d61790ddfa78963a8..0000000000000000000000000000000000000000
--- a/test/dart_codegen/expect/core/double.dart
+++ /dev/null
@@ -1,27 +0,0 @@
-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();
- external static double parse(String source, [double onError(String source)]);
-}
« 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