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

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

Issue 1421003004: Add CoreClasses (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comment. Created 5 years, 1 month 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
« no previous file with comments | « pkg/compiler/lib/src/ssa/optimize.dart ('k') | pkg/compiler/lib/src/ssa/types.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'package:js_runtime/shared/embedded_names.dart'; 9 import 'package:js_runtime/shared/embedded_names.dart';
10 10
11 import '../closure.dart'; 11 import '../closure.dart';
12 import '../common.dart'; 12 import '../common.dart';
13 import '../common/codegen.dart' show 13 import '../common/codegen.dart' show
14 CodegenRegistry, 14 CodegenRegistry,
15 CodegenWorkItem; 15 CodegenWorkItem;
16 import '../common/names.dart' show 16 import '../common/names.dart' show
17 Identifiers, 17 Identifiers,
18 Selectors; 18 Selectors;
19 import '../common/tasks.dart' show 19 import '../common/tasks.dart' show
20 CompilerTask; 20 CompilerTask;
21 import '../compiler.dart' show 21 import '../compiler.dart' show
22 Compiler; 22 Compiler;
23 import '../constant_system_dart.dart'; 23 import '../constant_system_dart.dart';
24 import '../constants/constant_system.dart'; 24 import '../constants/constant_system.dart';
25 import '../constants/expressions.dart'; 25 import '../constants/expressions.dart';
26 import '../constants/values.dart'; 26 import '../constants/values.dart';
27 import '../core_types.dart' show
28 CoreClasses;
27 import '../dart_types.dart'; 29 import '../dart_types.dart';
28 import '../diagnostics/messages.dart' show 30 import '../diagnostics/messages.dart' show
29 Message, 31 Message,
30 MessageTemplate; 32 MessageTemplate;
31 import '../elements/elements.dart'; 33 import '../elements/elements.dart';
32 import '../elements/modelx.dart' show 34 import '../elements/modelx.dart' show
33 ConstructorBodyElementX, 35 ConstructorBodyElementX,
34 ElementX, 36 ElementX,
35 VariableElementX; 37 VariableElementX;
36 import '../io/source_information.dart'; 38 import '../io/source_information.dart';
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 part 'interceptor_simplifier.dart'; 74 part 'interceptor_simplifier.dart';
73 part 'invoke_dynamic_specializers.dart'; 75 part 'invoke_dynamic_specializers.dart';
74 part 'nodes.dart'; 76 part 'nodes.dart';
75 part 'optimize.dart'; 77 part 'optimize.dart';
76 part 'types.dart'; 78 part 'types.dart';
77 part 'types_propagation.dart'; 79 part 'types_propagation.dart';
78 part 'validate.dart'; 80 part 'validate.dart';
79 part 'variable_allocator.dart'; 81 part 'variable_allocator.dart';
80 part 'value_range_analyzer.dart'; 82 part 'value_range_analyzer.dart';
81 part 'value_set.dart'; 83 part 'value_set.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/ssa/optimize.dart ('k') | pkg/compiler/lib/src/ssa/types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698