| Index: lib/compiler/implementation/elements/elements.dart
|
| diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart
|
| index 86e6bbd224652a21a863d09e495ee43afaa29423..05412dda5e3237f3688fd3bfcf51fbea8417d05e 100644
|
| --- a/lib/compiler/implementation/elements/elements.dart
|
| +++ b/lib/compiler/implementation/elements/elements.dart
|
| @@ -1484,9 +1484,7 @@ abstract class ClassElement extends ScopeContainerElement
|
| SourceString normalizedName;
|
| SourceString className = this.name;
|
| SourceString constructorName = selector.name;
|
| - if (!identical(constructorName, const SourceString('')) &&
|
| - ((className == null) ||
|
| - (constructorName.slowToString() != className.slowToString()))) {
|
| + if (!identical(constructorName, const SourceString(''))) {
|
| normalizedName = Elements.constructConstructorName(className,
|
| constructorName);
|
| } else {
|
|
|