Chromium Code Reviews

Unified Diff: sdk/lib/core/num.dart

Issue 12255055: Make Comparable generic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « sdk/lib/core/date_time.dart ('k') | utils/css/source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/num.dart
diff --git a/sdk/lib/core/num.dart b/sdk/lib/core/num.dart
index b5e42cbbf82dca417a50e24d005f8855129c5ffa..439022f684bd2ffe5be80ac3bfa99f40c620502d 100644
--- a/sdk/lib/core/num.dart
+++ b/sdk/lib/core/num.dart
@@ -7,7 +7,7 @@ part of dart.core;
/**
* All numbers in dart are instances of [num].
*/
-abstract class num implements Comparable {
+abstract class num implements Comparable<num> {
/** Addition operator. */
num operator +(num other);
« no previous file with comments | « sdk/lib/core/date_time.dart ('k') | utils/css/source.dart » ('j') | no next file with comments »

Powered by Google App Engine