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

Unified Diff: lib/runtime/dart/async.js

Issue 1039243002: fix temp used in postfix ops (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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/runtime/dart/_js_helper.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/async.js
diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js
index 0647976dbbf36d74af0c7f96198b3415e6dffe3f..7199d8541a783e8ff3e44bf23ce1f902566a444f 100644
--- a/lib/runtime/dart/async.js
+++ b/lib/runtime/dart/async.js
@@ -84,7 +84,7 @@ var async;
// Function sendEvent: () → void
function sendEvent() {
watch.reset();
- let data = computation(((x) => computationCount = dart.notNull(x$) + 1, x$)(computationCount));
+ let data = computation(((x) => computationCount = dart.notNull(x) + 1, x)(computationCount));
controller.add(data);
}
// Function startPeriodicTimer: () → void
@@ -1654,7 +1654,7 @@ var async;
}
}
for (let future of futures) {
- let pos = ((x) => remaining = dart.notNull(x$) + 1, x$)(remaining);
+ let pos = ((x) => remaining = dart.notNull(x) + 1, x)(remaining);
future.then(((value) => {
remaining = dart.notNull(remaining) - 1;
if (values !== null) {
« no previous file with comments | « lib/runtime/dart/_js_helper.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698