Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(991)

Unified Diff: pkg/compiler/lib/src/kernel/closure.dart

Issue 2961563003: Hopefully the last bit of restructuring between closture classes and loop boxing, etc. (Closed)
Patch Set: . Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/closure.dart ('k') | pkg/compiler/lib/src/kernel/element_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « pkg/compiler/lib/src/closure.dart ('k') | pkg/compiler/lib/src/kernel/element_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698