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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/ssa/ssa.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 ssa; 5 library ssa;
6 6
7 import 'dart:collection';
8
7 import '../closure.dart'; 9 import '../closure.dart';
8 import '../js/js.dart' as js; 10 import '../js/js.dart' as js;
9 import '../dart2jslib.dart' hide Selector; 11 import '../dart2jslib.dart' hide Selector;
10 import '../source_file.dart'; 12 import '../source_file.dart';
11 import '../source_map_builder.dart'; 13 import '../source_map_builder.dart';
12 import '../elements/elements.dart'; 14 import '../elements/elements.dart';
13 import '../js_backend/js_backend.dart'; 15 import '../js_backend/js_backend.dart';
14 import '../native_handler.dart' as native; 16 import '../native_handler.dart' as native;
15 import '../tree/tree.dart'; 17 import '../tree/tree.dart';
16 import '../types/types.dart'; 18 import '../types/types.dart';
(...skipping 15 matching lines...) Expand all
32 part 'invoke_dynamic_specializers.dart'; 34 part 'invoke_dynamic_specializers.dart';
33 part 'js_names.dart'; 35 part 'js_names.dart';
34 part 'nodes.dart'; 36 part 'nodes.dart';
35 part 'optimize.dart'; 37 part 'optimize.dart';
36 part 'types.dart'; 38 part 'types.dart';
37 part 'types_propagation.dart'; 39 part 'types_propagation.dart';
38 part 'validate.dart'; 40 part 'validate.dart';
39 part 'variable_allocator.dart'; 41 part 'variable_allocator.dart';
40 part 'value_range_analyzer.dart'; 42 part 'value_range_analyzer.dart';
41 part 'value_set.dart'; 43 part 'value_set.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698