| Index: pkg/compiler/lib/src/ssa/locals_handler.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/locals_handler.dart b/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| index 70d9522361a406ebf74ddf8c0071daae43bfce5d..ea2666b29860218e24c8cc56e2ac7aafbcfbbc0e 100644
|
| --- a/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| +++ b/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| @@ -7,6 +7,7 @@ import '../common.dart';
|
| import '../compiler.dart' show Compiler;
|
| import '../elements/resolution_types.dart';
|
| import '../elements/elements.dart';
|
| +import '../elements/entities.dart';
|
| import '../io/source_information.dart';
|
| import '../js/js.dart' as js;
|
| import '../js_backend/js_backend.dart';
|
| @@ -671,5 +672,8 @@ class SyntheticLocal extends Local {
|
|
|
| SyntheticLocal(this.name, this.executableContext);
|
|
|
| + @override
|
| + MemberElement get memberContext => executableContext.memberContext;
|
| +
|
| toString() => 'SyntheticLocal($name)';
|
| }
|
|
|