| Index: sdk/lib/_internal/compiler/implementation/lib/js_helper.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (revision 17141)
|
| +++ sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (working copy)
|
| @@ -735,7 +735,7 @@
|
| return JS('var', r'$[#]', className);
|
| }
|
|
|
| - static bool identical(a, b) {
|
| + static bool identicalImplementation(a, b) {
|
| return JS('bool', '# == null', a)
|
| ? JS('bool', '# == null', b)
|
| : JS('bool', '# === #', a, b);
|
|
|