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

Unified Diff: pkg/dev_compiler/lib/js/common/dart_sdk.js

Side-by-side diff isn't available for this file because of its large size.
Issue 2358323002: Regenerate DDC SDK (Closed)
Patch Set: Created 4 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:
Download patch
« no previous file with comments | « pkg/dev_compiler/lib/js/amd/dart_sdk.js ('k') | pkg/dev_compiler/lib/js/es6/dart_sdk.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/lib/js/common/dart_sdk.js
diff --git a/pkg/dev_compiler/lib/js/common/dart_sdk.js b/pkg/dev_compiler/lib/js/common/dart_sdk.js
index 73f6221b7e2a3cb139ffcf8abb86ad5a5636c03b..55d4f60ef834924cd6ef26a2ec5a14ff1699b85f 100644
--- a/pkg/dev_compiler/lib/js/common/dart_sdk.js
+++ b/pkg/dev_compiler/lib/js/common/dart_sdk.js
@@ -19109,7 +19109,7 @@
}
timeout(timeLimit, opts) {
let onTimeout = opts && 'onTimeout' in opts ? opts.onTimeout : null;
- if (dart.test(this[_isComplete])) return new async._Future.immediate(this);
+ if (dart.test(this[_isComplete])) return new (_FutureOfT()).immediate(this);
let result = new (_FutureOfT())();
let timer = null;
if (onTimeout == null) {
@@ -27036,7 +27036,7 @@
static from(elements) {
if (core.List.is(elements)) {
let length = elements[dartx.length];
- let queue = new collection.ListQueue(dart.notNull(length) + 1);
+ let queue = new (ListQueueOfE())(dart.notNull(length) + 1);
dart.assert(dart.notNull(queue[_table][dartx.length]) > dart.notNull(length));
for (let i = 0; i < dart.notNull(length); i++) {
queue[_table][dartx.set](i, E.as(elements[dartx.get](i)));
« no previous file with comments | « pkg/dev_compiler/lib/js/amd/dart_sdk.js ('k') | pkg/dev_compiler/lib/js/es6/dart_sdk.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698