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

Unified Diff: lib/core/object.dart

Issue 10977033: Cleanup the core/object.dart file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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: lib/core/object.dart
diff --git a/lib/core/object.dart b/lib/core/object.dart
index 1e4505936dd448d572a537082e2a0a49a2791513..d3347f848798bd6d9d3881094559215161c93dc3 100644
--- a/lib/core/object.dart
+++ b/lib/core/object.dart
@@ -58,17 +58,8 @@ class Object {
external Dynamic noSuchMethod(String name, List args);
/**
- * Returns a representation of the runtime type of the object.
+ * A representation of the runtime type of the object.
*/
- external Type runtimeType();
+ external Type get runtimeType;
Ivan Posva 2012/09/27 00:02:14 Any particular reason why you did not have to upda
ngeoffray 2012/09/27 08:29:35 Right, thanks for noticing Ivan. The test was actu
}
-/**
- * Representation of a type.
- */
-abstract class Type {}
-
-/**
- * Check whether two references are to the same object.
- */
-bool identical(Object a, Object b) => a === b;
« no previous file with comments | « lib/core/identical.dart ('k') | lib/core/type.dart » ('j') | lib/core/type.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698