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

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

Issue 2606253002: Move dart_types to elements/resolution_types (Closed)
Patch Set: Created 3 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
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 import 'dart:collection'; 5 import 'dart:collection';
6 6
7 import 'package:js_runtime/shared/embedded_names.dart'; 7 import 'package:js_runtime/shared/embedded_names.dart';
8 8
9 import '../closure.dart'; 9 import '../closure.dart';
10 import '../common.dart'; 10 import '../common.dart';
11 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem; 11 import '../common/codegen.dart' show CodegenRegistry, CodegenWorkItem;
12 import '../common/names.dart' show Identifiers, Selectors; 12 import '../common/names.dart' show Identifiers, Selectors;
13 import '../common/tasks.dart' show CompilerTask; 13 import '../common/tasks.dart' show CompilerTask;
14 import '../compiler.dart' show Compiler; 14 import '../compiler.dart' show Compiler;
15 import '../constants/constant_system.dart'; 15 import '../constants/constant_system.dart';
16 import '../constants/expressions.dart'; 16 import '../constants/expressions.dart';
17 import '../constants/values.dart'; 17 import '../constants/values.dart';
18 import '../core_types.dart' show CommonElements; 18 import '../core_types.dart' show CommonElements;
19 import '../dart_types.dart'; 19 import '../elements/resolution_types.dart';
20 import '../diagnostics/messages.dart' show Message, MessageTemplate; 20 import '../diagnostics/messages.dart' show Message, MessageTemplate;
21 import '../dump_info.dart' show InfoReporter; 21 import '../dump_info.dart' show InfoReporter;
22 import '../elements/elements.dart'; 22 import '../elements/elements.dart';
23 import '../elements/entities.dart'; 23 import '../elements/entities.dart';
24 import '../elements/modelx.dart' show ConstructorBodyElementX; 24 import '../elements/modelx.dart' show ConstructorBodyElementX;
25 import '../io/source_information.dart'; 25 import '../io/source_information.dart';
26 import '../js/js.dart' as js; 26 import '../js/js.dart' as js;
27 import '../js_backend/backend_helpers.dart' show BackendHelpers; 27 import '../js_backend/backend_helpers.dart' show BackendHelpers;
28 import '../js_backend/js_backend.dart'; 28 import '../js_backend/js_backend.dart';
29 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; 29 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter;
(...skipping 6724 matching lines...) Expand 10 before | Expand all | Expand 10 after
6754 this.oldReturnLocal, 6754 this.oldReturnLocal,
6755 this.oldReturnType, 6755 this.oldReturnType,
6756 this.oldResolvedAst, 6756 this.oldResolvedAst,
6757 this.oldStack, 6757 this.oldStack,
6758 this.oldLocalsHandler, 6758 this.oldLocalsHandler,
6759 this.inTryStatement, 6759 this.inTryStatement,
6760 this.allFunctionsCalledOnce, 6760 this.allFunctionsCalledOnce,
6761 this.oldElementInferenceResults) 6761 this.oldElementInferenceResults)
6762 : super(function); 6762 : super(function);
6763 } 6763 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/serialization/values.dart ('k') | pkg/compiler/lib/src/ssa/builder_kernel.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698