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

Side by Side Diff: pkg/compiler/lib/src/ssa/ssa.dart

Issue 1091443003: Move constant systems into their own libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix try/poi/forget_element_test 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 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'; 7 import 'dart:collection';
8 8
9 import '../closure.dart'; 9 import '../closure.dart';
10 import '../constant_system_dart.dart';
11 import '../constants/constant_system.dart';
10 import '../constants/expressions.dart'; 12 import '../constants/expressions.dart';
11 import '../constants/values.dart'; 13 import '../constants/values.dart';
12 import '../deferred_load.dart' show DeferredLoadTask; 14 import '../deferred_load.dart' show DeferredLoadTask;
13 import '../dart2jslib.dart' hide Selector, TypedSelector; 15 import '../dart2jslib.dart' hide Selector, TypedSelector;
14 import '../dart_types.dart'; 16 import '../dart_types.dart';
15 import '../elements/elements.dart'; 17 import '../elements/elements.dart';
16 import '../elements/modelx.dart' 18 import '../elements/modelx.dart'
17 show ElementX, 19 show ElementX,
18 VariableElementX, 20 VariableElementX,
19 ConstructorBodyElementX; 21 ConstructorBodyElementX;
(...skipping 20 matching lines...) Expand all
40 part 'interceptor_simplifier.dart'; 42 part 'interceptor_simplifier.dart';
41 part 'invoke_dynamic_specializers.dart'; 43 part 'invoke_dynamic_specializers.dart';
42 part 'nodes.dart'; 44 part 'nodes.dart';
43 part 'optimize.dart'; 45 part 'optimize.dart';
44 part 'types.dart'; 46 part 'types.dart';
45 part 'types_propagation.dart'; 47 part 'types_propagation.dart';
46 part 'validate.dart'; 48 part 'validate.dart';
47 part 'variable_allocator.dart'; 49 part 'variable_allocator.dart';
48 part 'value_range_analyzer.dart'; 50 part 'value_range_analyzer.dart';
49 part 'value_set.dart'; 51 part 'value_set.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution.dart ('k') | pkg/compiler/lib/src/use_unused_api.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698