| Index: dart/runtime/lib/identical_patch.dart
|
| ===================================================================
|
| --- dart/runtime/lib/identical_patch.dart (revision 16161)
|
| +++ dart/runtime/lib/identical_patch.dart (working copy)
|
| @@ -2,4 +2,6 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -patch bool identical(Object a, Object b) => a === b;
|
| +patch bool identical(Object a, Object b) {
|
| + throw new Error('Should not reach the body of identical');
|
| +}
|
|
|