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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/dart2jslib.dart

Issue 11867024: Move some core classes to collection library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with bug number. Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library dart2js; 5 library dart2js;
6 6
7 import 'dart:uri'; 7 import 'dart:uri';
8 import 'dart:collection' show Queue, LinkedHashMap;
8 9
9 import 'closure.dart' as closureMapping; 10 import 'closure.dart' as closureMapping;
10 import 'dart_backend/dart_backend.dart' as dart_backend; 11 import 'dart_backend/dart_backend.dart' as dart_backend;
11 import 'elements/elements.dart'; 12 import 'elements/elements.dart';
12 import 'elements/modelx.dart' 13 import 'elements/modelx.dart'
13 show ErroneousElementX, 14 show ErroneousElementX,
14 CompilationUnitElementX, 15 CompilationUnitElementX,
15 LibraryElementX, 16 LibraryElementX,
16 PrefixElementX, 17 PrefixElementX,
17 VoidElementX; 18 VoidElementX;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 part 'constant_system_dart.dart'; 50 part 'constant_system_dart.dart';
50 part 'diagnostic_listener.dart'; 51 part 'diagnostic_listener.dart';
51 part 'enqueue.dart'; 52 part 'enqueue.dart';
52 part 'library_loader.dart'; 53 part 'library_loader.dart';
53 part 'resolved_visitor.dart'; 54 part 'resolved_visitor.dart';
54 part 'script.dart'; 55 part 'script.dart';
55 part 'tree_validator.dart'; 56 part 'tree_validator.dart';
56 part 'typechecker.dart'; 57 part 'typechecker.dart';
57 part 'warnings.dart'; 58 part 'warnings.dart';
58 part 'world.dart'; 59 part 'world.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698