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

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

Issue 1762723002: Cleanup 1: split parts into their own libraries, remove unused imports (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 library dart2js.compiler_base; 5 library dart2js.compiler_base;
6 6
7 import 'dart:async' show 7 import 'dart:async' show
8 EventSink, 8 EventSink,
9 Future; 9 Future;
10 10
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 import 'resolution/resolution.dart' show 102 import 'resolution/resolution.dart' show
103 ResolverTask; 103 ResolverTask;
104 import 'resolution/tree_elements.dart' show 104 import 'resolution/tree_elements.dart' show
105 TreeElementMapping; 105 TreeElementMapping;
106 import 'scanner/scanner_task.dart' show 106 import 'scanner/scanner_task.dart' show
107 ScannerTask; 107 ScannerTask;
108 import 'serialization/task.dart' show 108 import 'serialization/task.dart' show
109 SerializationTask; 109 SerializationTask;
110 import 'script.dart' show 110 import 'script.dart' show
111 Script; 111 Script;
112 import 'ssa/ssa.dart' show 112 import 'ssa/nodes.dart' show
113 HInstruction; 113 HInstruction;
114 import 'tracer.dart' show 114 import 'tracer.dart' show
115 Tracer; 115 Tracer;
116 import 'tokens/token.dart' show 116 import 'tokens/token.dart' show
117 StringToken, 117 StringToken,
118 Token, 118 Token,
119 TokenPair; 119 TokenPair;
120 import 'tokens/token_constants.dart' as Tokens show 120 import 'tokens/token_constants.dart' as Tokens show
121 COMMENT_TOKEN, 121 COMMENT_TOKEN,
122 EOF_TOKEN; 122 EOF_TOKEN;
(...skipping 2080 matching lines...) Expand 10 before | Expand all | Expand 10 after
2203 if (_otherDependencies == null) { 2203 if (_otherDependencies == null) {
2204 _otherDependencies = new Setlet<Element>(); 2204 _otherDependencies = new Setlet<Element>();
2205 } 2205 }
2206 _otherDependencies.add(element.implementation); 2206 _otherDependencies.add(element.implementation);
2207 } 2207 }
2208 2208
2209 Iterable<Element> get otherDependencies { 2209 Iterable<Element> get otherDependencies {
2210 return _otherDependencies != null ? _otherDependencies : const <Element>[]; 2210 return _otherDependencies != null ? _otherDependencies : const <Element>[];
2211 } 2211 }
2212 } 2212 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/cps_ir/backward_null_check_remover.dart » ('j') | pkg/compiler/lib/src/ssa/validate.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698