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

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

Issue 2860753005: Make elements/names.dart its own library (Closed)
Patch Set: Created 3 years, 7 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'; 14 import '../compiler.dart';
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 '../diagnostics/messages.dart' show Message, MessageTemplate; 18 import '../diagnostics/messages.dart' show Message, MessageTemplate;
19 import '../dump_info.dart' show InfoReporter; 19 import '../dump_info.dart' show InfoReporter;
20 import '../elements/elements.dart'; 20 import '../elements/elements.dart';
21 import '../elements/entities.dart'; 21 import '../elements/entities.dart';
22 import '../elements/modelx.dart' show ConstructorBodyElementX; 22 import '../elements/modelx.dart' show ConstructorBodyElementX;
23 import '../elements/names.dart';
23 import '../elements/operators.dart'; 24 import '../elements/operators.dart';
24 import '../elements/resolution_types.dart'; 25 import '../elements/resolution_types.dart';
25 import '../elements/types.dart'; 26 import '../elements/types.dart';
26 import '../io/source_information.dart'; 27 import '../io/source_information.dart';
27 import '../js/js.dart' as js; 28 import '../js/js.dart' as js;
28 import '../js_backend/backend.dart' show JavaScriptBackend; 29 import '../js_backend/backend.dart' show JavaScriptBackend;
29 import '../js_backend/js_backend.dart'; 30 import '../js_backend/js_backend.dart';
30 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter; 31 import '../js_emitter/js_emitter.dart' show CodeEmitterTask, NativeEmitter;
31 import '../native/native.dart' as native; 32 import '../native/native.dart' as native;
32 import '../resolution/semantic_visitor.dart'; 33 import '../resolution/semantic_visitor.dart';
(...skipping 6709 matching lines...) Expand 10 before | Expand all | Expand 10 after
6742 this.oldReturnLocal, 6743 this.oldReturnLocal,
6743 this.oldReturnType, 6744 this.oldReturnType,
6744 this.oldResolvedAst, 6745 this.oldResolvedAst,
6745 this.oldStack, 6746 this.oldStack,
6746 this.oldLocalsHandler, 6747 this.oldLocalsHandler,
6747 this.inTryStatement, 6748 this.inTryStatement,
6748 this.allFunctionsCalledOnce, 6749 this.allFunctionsCalledOnce,
6749 this.oldElementInferenceResults) 6750 this.oldElementInferenceResults)
6750 : super(function); 6751 : super(function);
6751 } 6752 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/serialization/serialization_util.dart ('k') | pkg/compiler/lib/src/ssa/invoke_dynamic_specializers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698