| 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 32ee597324b73c0fbd6bcee58f3c6aa5dee4798d..f00849a9cd12c1bf3ec3e53cc938f635e6a16ace 100644
|
| --- a/lib/compiler/implementation/dart_backend/backend.dart
|
| +++ b/lib/compiler/implementation/dart_backend/backend.dart
|
| @@ -237,7 +237,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:
|
|
|