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

Unified Diff: lib/compiler/implementation/ssa/codegen.dart

Issue 10913133: Allow closures inside lazy initializers. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 2 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 | « lib/compiler/implementation/ssa/builder.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/ssa/codegen.dart
diff --git a/lib/compiler/implementation/ssa/codegen.dart b/lib/compiler/implementation/ssa/codegen.dart
index 16081b16dc27b91592582710d33730c1e5bf7cfe..3a76bf09a9ca8a5edb98964d7c4c213a58ee417e 100644
--- a/lib/compiler/implementation/ssa/codegen.dart
+++ b/lib/compiler/implementation/ssa/codegen.dart
@@ -78,7 +78,7 @@ class SsaCodeGeneratorTask extends CompilerTask {
// the declaration.
FunctionElement function = work.element;
function.computeSignature(compiler).forEachParameter((element) {
- compiler.enqueuer.codegen.addToWorkList(element);
+ compiler.enqueuer.codegen.addToWorkList(element, work.resolutionTree);
});
List<js.Parameter> parameters = <js.Parameter>[];
parameterNames.forEach((element, name) {
« no previous file with comments | « lib/compiler/implementation/ssa/builder.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698