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

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

Issue 2223133003: pkg/compiler: clean up imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 deferred_load; 5 library deferred_load;
6 6
7 import 'common/backend_api.dart' show Backend; 7 import 'common/backend_api.dart' show Backend;
8 import 'common/tasks.dart' show CompilerTask; 8 import 'common/tasks.dart' show CompilerTask;
9 import 'common.dart'; 9 import 'common.dart';
10 import 'compiler.dart' show Compiler; 10 import 'compiler.dart' show Compiler;
11 import 'constants/expressions.dart' 11 import 'constants/expressions.dart' show ConstantExpression;
12 show ConstantExpression, ConstantExpressionKind;
13 import 'constants/values.dart' 12 import 'constants/values.dart'
14 show 13 show
15 ConstantValue, 14 ConstantValue,
16 ConstructedConstantValue, 15 ConstructedConstantValue,
17 DeferredConstantValue, 16 DeferredConstantValue,
18 StringConstantValue; 17 StringConstantValue;
19 import 'dart_types.dart'; 18 import 'dart_types.dart';
20 import 'elements/elements.dart' 19 import 'elements/elements.dart'
21 show 20 show
22 AccessorElement, 21 AccessorElement,
(...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 1032
1034 bool operator ==(other) { 1033 bool operator ==(other) {
1035 if (other is! _DeclaredDeferredImport) return false; 1034 if (other is! _DeclaredDeferredImport) return false;
1036 return declaration == other.declaration; 1035 return declaration == other.declaration;
1037 } 1036 }
1038 1037
1039 int get hashCode => declaration.hashCode * 17; 1038 int get hashCode => declaration.hashCode * 17;
1040 1039
1041 String toString() => '$declaration'; 1040 String toString() => '$declaration';
1042 } 1041 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/compile_time_constants.dart ('k') | pkg/compiler/lib/src/io/position_information.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698