Chromium Code Reviews| 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); |
| } |