| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |