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

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

Issue 2358323002: Regenerate DDC SDK (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | pkg/dev_compiler/lib/js/common/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/amd/dart_sdk.js
diff --git a/pkg/dev_compiler/lib/js/amd/dart_sdk.js b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
index b116fe49fee3818812868e85020dcc1266e80c3e..24188293e1dcb81db5cb386b10680edf06f80ef1 100644
--- a/pkg/dev_compiler/lib/js/amd/dart_sdk.js
+++ b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
@@ -19109,7 +19109,7 @@ define([], function() {
}
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 @@ define([], function() {
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 | « no previous file | pkg/dev_compiler/lib/js/common/dart_sdk.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698