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

Unified Diff: test/generated_sdk/lib/collection/collection.dart

Issue 1104753002: patch_sdk: fix part/import order (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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/async/async.dart ('k') | test/generated_sdk/lib/convert/convert.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/generated_sdk/lib/collection/collection.dart
diff --git a/test/generated_sdk/lib/collection/collection.dart b/test/generated_sdk/lib/collection/collection.dart
index 79cace214f469b570636ec4e0fe289296d4bb52d..4c6ab59bc0e7ea2e94c6f15d85f69a1793d870a9 100644
--- a/test/generated_sdk/lib/collection/collection.dart
+++ b/test/generated_sdk/lib/collection/collection.dart
@@ -8,7 +8,10 @@
library dart.collection;
import 'dart:_internal';
-import 'dart:math' show Random; // Used by ListMixin.shuffle.
+import 'dart:math' show Random;
+import 'dart:_foreign_helper' show JS;
+import 'dart:_js_helper' show
+ fillLiteralMap, InternalMap, NoInline, NoThrows, patch; // Used by ListMixin.shuffle.
part 'collections.dart';
part 'hash_map.dart';
@@ -23,9 +26,6 @@ part 'maps.dart';
part 'queue.dart';
part 'set.dart';
part 'splay_tree.dart';
-import 'dart:_foreign_helper' show JS;
-import 'dart:_js_helper' show
- fillLiteralMap, InternalMap, NoInline, NoThrows, patch;
class _HashMap<K, V> implements HashMap<K, V> {
int _length = 0;
« no previous file with comments | « test/generated_sdk/lib/async/async.dart ('k') | test/generated_sdk/lib/convert/convert.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698