| Index: lib/compiler/implementation/elements/elements.dart
|
| diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart
|
| index 8eb26d8a00f392d4332016bb66bbed4bbe3d6143..1fcdac5f801818bf7f0c697b3b3d9bd6fba9649d 100644
|
| --- a/lib/compiler/implementation/elements/elements.dart
|
| +++ b/lib/compiler/implementation/elements/elements.dart
|
| @@ -1482,9 +1482,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 (constructorName != const SourceString('')) {
|
| normalizedName = Elements.constructConstructorName(className,
|
| constructorName);
|
| } else {
|
|
|