| Index: runtime/lib/mirrors_impl.dart
|
| diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
|
| index a2ab082698353683625dd7195acd806f3046f56c..c37c0496d0d74231f72b6947e731588cfd54eb0b 100644
|
| --- a/runtime/lib/mirrors_impl.dart
|
| +++ b/runtime/lib/mirrors_impl.dart
|
| @@ -1244,7 +1244,8 @@ class _LocalMethodMirrorImpl extends _LocalDeclarationMirrorImpl
|
| 'Internal error in MethodMirror.constructorName: '
|
| 'malformed name <$simpleName>');
|
| } else if (parts.length == 2) {
|
| - _constructorName = _s(parts[1]);
|
| + LibraryMirror definingLibrary = owner.owner;
|
| + _constructorName = MirrorSystem.getSymbol(parts[1], definingLibrary);
|
| } else {
|
| _constructorName = _s('');
|
| }
|
|
|