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

Unified Diff: lib/core/object.dart

Issue 10918047: First corelib cleanup patch after unification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove bogus comment. 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 e0f94f73e34b1d310ebd26fa0f64fa3e3890457d..b3b3610cf48273ddc14154275bd8edea626c8b22 100644
--- a/lib/core/object.dart
+++ b/lib/core/object.dart
@@ -8,13 +8,11 @@
class Object {
const Object();
- String toString() => ObjectImplementation.toStringImpl(this);
-
- void noSuchMethod(String name, List args) {
- ObjectImplementation.noSuchMethodImpl(this, name, args);
- }
-
operator ==(other) => this === other;
Lasse Reichstein Nielsen 2012/09/04 06:58:52 Return type should be bool.
Johnni Winther 2012/09/04 07:23:23 Must be bool. We will be creating docs based on th
Mads Ager (google) 2012/09/04 07:27:05 Done.
get dynamic() => this;
Lasse Reichstein Nielsen 2012/09/04 06:58:52 Parentheses no longer needed. (But there's probabl
Mads Ager (google) 2012/09/04 07:27:05 Done.
+
+ external String toString();
+
+ external void noSuchMethod(String name, List args);
}

Powered by Google App Engine
This is Rietveld 408576698