| Index: lib/compiler/implementation/lib/coreimpl_patch.dart
|
| diff --git a/lib/compiler/implementation/lib/coreimpl_patch.dart b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| index ed5c547228d5068ba97cc26647182832536e404c..8bdedd88666ea677540e4e2c2e9e412decfd47be 100644
|
| --- a/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| +++ b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| @@ -16,20 +16,6 @@ patch class PrintImplementation {
|
| }
|
|
|
|
|
| -// Patch for Object implementation.
|
| -// TODO(ager): Split out into object_patch.dart and allow #source
|
| -// in patch files?
|
| -patch class ObjectImplementation {
|
| - patch static String toStringImpl(Object object) {
|
| - return Primitives.objectToString(object);
|
| - }
|
| -
|
| - patch static void noSuchMethodImpl(Object object, String name, List args) {
|
| - throw new NoSuchMethodException(object, name, args);
|
| - }
|
| -}
|
| -
|
| -
|
| // Patch for String implementation.
|
| // TODO(ager): Split out into date_patch.dart and allow #source
|
| // in patch files?
|
|
|