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

Unified Diff: lib/runtime/dart/_internal.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 | « no previous file | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_internal.js
diff --git a/lib/runtime/dart/_internal.js b/lib/runtime/dart/_internal.js
index 9b0c19999565d4eba58141789fd882a15c392bfc..6218815c41d515303327b4583712f78401769ffd 100644
--- a/lib/runtime/dart/_internal.js
+++ b/lib/runtime/dart/_internal.js
@@ -1156,13 +1156,13 @@ var _internal;
list.length = insertionLength;
list.setRange(dart.notNull(index) + dart.notNull(insertionLength), list.length, list, index);
for (let element of iterable) {
- list.set(((x) => index = dart.notNull(x$) + 1, x$)(index), element);
+ list.set(((x) => index = dart.notNull(x) + 1, x)(index), element);
}
}
static setAllList(list, index, iterable) {
core.RangeError.checkValueInInterval(index, 0, list.length, "index");
for (let element of iterable) {
- list.set(((x) => index = dart.notNull(x$) + 1, x$)(index), element);
+ list.set(((x) => index = dart.notNull(x) + 1, x)(index), element);
}
}
asMapList(l) {
@@ -1660,12 +1660,12 @@ var _internal;
continue;
} else if (dart.notNull(comp) < 0) {
a.set(k, a.get(less));
- a.set(((x) => less = dart.notNull(x$) + 1, x$)(less), a.get(great));
- a.set(((x) => great = dart.notNull(x$) - 1, x$)(great), ak);
+ a.set(((x) => less = dart.notNull(x) + 1, x)(less), a.get(great));
+ a.set(((x) => great = dart.notNull(x) - 1, x)(great), ak);
break;
} else {
a.set(k, a.get(great));
- a.set(((x) => great = dart.notNull(x$) - 1, x$)(great), ak);
+ a.set(((x) => great = dart.notNull(x) - 1, x)(great), ak);
break;
}
}
@@ -1695,11 +1695,11 @@ var _internal;
comp = dart.dinvokef(compare, a.get(great), pivot1);
if (dart.notNull(comp) < 0) {
a.set(k, a.get(less));
- a.set(((x) => less = dart.notNull(x$) + 1, x$)(less), a.get(great));
- a.set(((x) => great = dart.notNull(x$) - 1, x$)(great), ak);
+ a.set(((x) => less = dart.notNull(x) + 1, x)(less), a.get(great));
+ a.set(((x) => great = dart.notNull(x) - 1, x)(great), ak);
} else {
a.set(k, a.get(great));
- a.set(((x) => great = dart.notNull(x$) - 1, x$)(great), ak);
+ a.set(((x) => great = dart.notNull(x) - 1, x)(great), ak);
}
break;
}
@@ -1747,11 +1747,11 @@ var _internal;
comp = dart.dinvokef(compare, a.get(great), pivot1);
if (dart.notNull(comp) < 0) {
a.set(k, a.get(less));
- a.set(((x) => less = dart.notNull(x$) + 1, x$)(less), a.get(great));
- a.set(((x) => great = dart.notNull(x$) - 1, x$)(great), ak);
+ a.set(((x) => less = dart.notNull(x) + 1, x)(less), a.get(great));
+ a.set(((x) => great = dart.notNull(x) - 1, x)(great), ak);
} else {
a.set(k, a.get(great));
- a.set(((x) => great = dart.notNull(x$) - 1, x$)(great), ak);
+ a.set(((x) => great = dart.notNull(x) - 1, x)(great), ak);
}
break;
}
« no previous file with comments | « no previous file | lib/runtime/dart/_isolate_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698