Index: pkg/compiler/lib/src/kernel/closure.dart |
diff --git a/pkg/compiler/lib/src/kernel/closure.dart b/pkg/compiler/lib/src/kernel/closure.dart |
index d62b26cbd75aa79087de472363ecceb0311385f5..46eb22736fad4900afc172d1cd01f5552958c6d4 100644 |
--- a/pkg/compiler/lib/src/kernel/closure.dart |
+++ b/pkg/compiler/lib/src/kernel/closure.dart |
@@ -93,8 +93,8 @@ class KernelClosureConversionTask extends ClosureConversionTask<ir.Node> { |
/// TODO(johnniwinther,efortuna): Implement this. |
@override |
- ClosureAnalysisInfo getClosureAnalysisInfo(ir.Node node) { |
- return const ClosureAnalysisInfo(); |
+ ClosureScope getClosureScope(ir.Node node) { |
+ return const ClosureScope(); |
} |
@override |
@@ -105,9 +105,8 @@ class KernelClosureConversionTask extends ClosureConversionTask<ir.Node> { |
/// TODO(johnniwinther,efortuna): Implement this. |
@override |
- LoopClosureRepresentationInfo getClosureRepresentationInfoForLoop( |
- ir.Node loopNode) { |
- return const LoopClosureRepresentationInfo(); |
+ LoopClosureScope getLoopClosureScope(ir.Node loopNode) { |
+ return const LoopClosureScope(); |
} |
@override |