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