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

Unified Diff: test/generated_sdk/lib/core/list.dart

Issue 1020043002: Replace dart_core.js with actual compiled SDK (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merge 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 | « test/generated_sdk/lib/core/int.dart ('k') | test/test.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/generated_sdk/lib/core/list.dart
diff --git a/test/generated_sdk/lib/core/list.dart b/test/generated_sdk/lib/core/list.dart
index 24e8eccf6109d04927d32819bef4e69d26f2a807..583d895d5ef111621bb5e7a16e4f5cc7306964ef 100644
--- a/test/generated_sdk/lib/core/list.dart
+++ b/test/generated_sdk/lib/core/list.dart
@@ -108,12 +108,16 @@ abstract class List<E> implements Iterable<E>, EfficientLength {
* otherwise, it returns a fixed-length list.
*/
factory List.from(Iterable elements, { bool growable: true }) {
+ // TODO(jmesserly): fix this. This is just to unblock initial SDK check in.
+ return null;
+ /*
List<E> list = new List<E>();
for (E e in elements) {
list.add(e);
}
if (growable) return list;
return makeListFixedLength(list);
+ */
}
/**
« no previous file with comments | « test/generated_sdk/lib/core/int.dart ('k') | test/test.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698