| OLD | NEW |
| 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.backend_api; | 5 library dart2js.backend_api; |
| 6 | 6 |
| 7 import '../common.dart'; | |
| 8 import '../common/codegen.dart' show CodegenImpact; | |
| 9 import '../common/resolution.dart' show ResolutionImpact; | 7 import '../common/resolution.dart' show ResolutionImpact; |
| 10 import '../constants/expressions.dart' show ConstantExpression; | 8 import '../constants/expressions.dart' show ConstantExpression; |
| 11 import '../elements/types.dart'; | 9 import '../elements/types.dart'; |
| 12 import '../elements/resolution_types.dart' | 10 import '../elements/resolution_types.dart' |
| 13 show ResolutionDartType, ResolutionInterfaceType; | 11 show ResolutionDartType, ResolutionInterfaceType; |
| 14 import '../elements/entities.dart'; | 12 import '../elements/entities.dart'; |
| 15 import '../enqueue.dart' show ResolutionEnqueuer; | 13 import '../enqueue.dart' show ResolutionEnqueuer; |
| 16 import '../serialization/serialization.dart' | 14 import '../serialization/serialization.dart' |
| 17 show DeserializerPlugin, SerializerPlugin; | 15 show DeserializerPlugin, SerializerPlugin; |
| 18 import '../tree/tree.dart' show Node; | 16 import '../tree/tree.dart' show Node; |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 InterfaceType getConstantMapTypeFor(InterfaceType sourceType, | 179 InterfaceType getConstantMapTypeFor(InterfaceType sourceType, |
| 182 {bool hasProtoKey: false, bool onlyStringKeys: false}); | 180 {bool hasProtoKey: false, bool onlyStringKeys: false}); |
| 183 | 181 |
| 184 /// Returns the type of the constant symbol implementation class. | 182 /// Returns the type of the constant symbol implementation class. |
| 185 InterfaceType get symbolType; | 183 InterfaceType get symbolType; |
| 186 | 184 |
| 187 /// Returns the field of the constant symbol implementation class that holds | 185 /// Returns the field of the constant symbol implementation class that holds |
| 188 /// its internal name. | 186 /// its internal name. |
| 189 FieldEntity get symbolField; | 187 FieldEntity get symbolField; |
| 190 } | 188 } |
| OLD | NEW |