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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/js_backend/js_backend.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 js_backend; 5 library js_backend;
6 6
7 import 'dart:collection' show LinkedHashMap;
8
7 import '../closure.dart'; 9 import '../closure.dart';
8 import '../../compiler.dart' as api; 10 import '../../compiler.dart' as api;
9 import '../elements/elements.dart'; 11 import '../elements/elements.dart';
10 import '../elements/modelx.dart' show FunctionElementX; 12 import '../elements/modelx.dart' show FunctionElementX;
11 import '../dart2jslib.dart' hide Selector; 13 import '../dart2jslib.dart' hide Selector;
12 import '../js/js.dart' as js; 14 import '../js/js.dart' as js;
13 import '../native_handler.dart' as native; 15 import '../native_handler.dart' as native;
14 import '../source_file.dart'; 16 import '../source_file.dart';
15 import '../source_map_builder.dart'; 17 import '../source_map_builder.dart';
16 import '../ssa/ssa.dart'; 18 import '../ssa/ssa.dart';
17 import '../tree/tree.dart'; 19 import '../tree/tree.dart';
18 import '../universe/universe.dart'; 20 import '../universe/universe.dart';
19 import '../util/characters.dart'; 21 import '../util/characters.dart';
20 import '../util/util.dart'; 22 import '../util/util.dart';
21 23
22 part 'backend.dart'; 24 part 'backend.dart';
23 part 'constant_emitter.dart'; 25 part 'constant_emitter.dart';
24 part 'constant_system_javascript.dart'; 26 part 'constant_system_javascript.dart';
25 part 'emitter.dart'; 27 part 'emitter.dart';
26 part 'emitter_no_eval.dart'; 28 part 'emitter_no_eval.dart';
27 part 'minify_namer.dart'; 29 part 'minify_namer.dart';
28 part 'namer.dart'; 30 part 'namer.dart';
29 part 'native_emitter.dart'; 31 part 'native_emitter.dart';
30 part 'runtime_types.dart'; 32 part 'runtime_types.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698