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

Unified Diff: pkg/kernel/lib/transformations/async.dart

Issue 2725623003: Reland "Track the 'awaiter return' call stack..." (Closed)
Patch Set: Update the Kernel continuation transformer Created 3 years, 10 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 | « no previous file | runtime/lib/async_patch.dart » ('j') | runtime/lib/async_patch.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/lib/transformations/async.dart
diff --git a/pkg/kernel/lib/transformations/async.dart b/pkg/kernel/lib/transformations/async.dart
index b01f71a896f001a9bff950ed9929d9dbde6be1d9..352b4168c4c7828a42483e7b5e3ab400acac802c 100644
--- a/pkg/kernel/lib/transformations/async.dart
+++ b/pkg/kernel/lib/transformations/async.dart
@@ -417,7 +417,8 @@ class ExpressionLifter extends Transformer {
Arguments arguments = new Arguments(<Expression>[
expr.operand,
new VariableGet(R.thenContinuationVariable),
- new VariableGet(R.catchErrorContinuationVariable)
+ new VariableGet(R.catchErrorContinuationVariable),
+ new VariableGet(R.nestedClosureVariable),
]);
statements.add(new ExpressionStatement(
new StaticInvocation(R.helper.awaitHelper, arguments)
« no previous file with comments | « no previous file | runtime/lib/async_patch.dart » ('j') | runtime/lib/async_patch.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698