| Index: pkg/compiler/lib/src/ssa/graph_builder.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/graph_builder.dart b/pkg/compiler/lib/src/ssa/graph_builder.dart
|
| index 31cf77d1f8730a85ae166ef36e5218f92b766fbd..e0716163061dedc5fc75b86e295b5784c3c15875 100644
|
| --- a/pkg/compiler/lib/src/ssa/graph_builder.dart
|
| +++ b/pkg/compiler/lib/src/ssa/graph_builder.dart
|
| @@ -2,7 +2,7 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -import '../closure.dart';
|
| +import '../closure.dart' show ClosureClassMaps;
|
| import '../constants/constant_system.dart';
|
| import '../common/codegen.dart' show CodegenRegistry;
|
| import '../common_elements.dart';
|
| @@ -72,7 +72,7 @@ abstract class GraphBuilder {
|
| GlobalTypeInferenceResults get globalInferenceResults =>
|
| compiler.globalInference.results;
|
|
|
| - ClosureTask get closureToClassMapper => compiler.closureToClassMapper;
|
| + ClosureClassMaps get closureToClassMapper => compiler.closureToClassMapper;
|
|
|
| NativeData get nativeData => closedWorld.nativeData;
|
|
|
|
|