| Index: lib/compiler/implementation/dart_backend/backend.dart
|
| diff --git a/lib/compiler/implementation/dart_backend/backend.dart b/lib/compiler/implementation/dart_backend/backend.dart
|
| index 60855b46da119988c890a8f6b56c1b2ffb56e887..dd1178afd3b59a6956b8ccb52a15b7407fd0c6be 100644
|
| --- a/lib/compiler/implementation/dart_backend/backend.dart
|
| +++ b/lib/compiler/implementation/dart_backend/backend.dart
|
| @@ -242,7 +242,7 @@ class DartBackend extends Backend {
|
| // Fetch name of named constructors and factories if any,
|
| // otherwise store regular name.
|
| // TODO(antonm): better way to analyze the name.
|
| - fixedMemberNames.add(name.split(r'$').last());
|
| + fixedMemberNames.add(name.split(r'$').last);
|
| }
|
| }
|
| // Even class names are added due to a delicate problem we have:
|
|
|