| Index: pkg/compiler/lib/src/js/rewrite_async.dart
|
| diff --git a/pkg/compiler/lib/src/js/rewrite_async.dart b/pkg/compiler/lib/src/js/rewrite_async.dart
|
| index 617f860238274510ce3466a84de28bb76c180169..2cccc5e8598e29a18c094a66e621c8c8f82573eb 100644
|
| --- a/pkg/compiler/lib/src/js/rewrite_async.dart
|
| +++ b/pkg/compiler/lib/src/js/rewrite_async.dart
|
| @@ -831,7 +831,7 @@ abstract class AsyncRewriterBase extends js.NodeVisitor {
|
| if (!shouldTransform(node.then) && !shouldTransform(node.otherwise)) {
|
| return withExpression(node.condition, (js.Expression condition) {
|
| return js.js('# ? # : #', [condition, node.then, node.otherwise]);
|
| - });
|
| + }, store: false);
|
| }
|
| int thenLabel = newLabel("then");
|
| int joinLabel = newLabel("join");
|
|
|