| 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 'dart:async' show Future; | 7 import 'dart:async' show Future; |
| 8 | 8 |
| 9 import '../common.dart'; | 9 import '../common.dart'; |
| 10 import '../common/codegen.dart' show CodegenImpact; | 10 import '../common/codegen.dart' show CodegenImpact; |
| 11 import '../common/resolution.dart' show ResolutionImpact, Frontend, Target; | 11 import '../common/resolution.dart' show ResolutionImpact, Frontend, Target; |
| 12 import '../compile_time_constants.dart' | 12 import '../compile_time_constants.dart' |
| 13 show BackendConstantEnvironment, ConstantCompilerTask; | 13 show BackendConstantEnvironment, ConstantCompilerTask; |
| 14 import '../compiler.dart' show Compiler; | 14 import '../compiler.dart' show Compiler; |
| 15 import '../constants/constant_system.dart' show ConstantSystem; | 15 import '../constants/constant_system.dart' show ConstantSystem; |
| 16 import '../constants/expressions.dart' show ConstantExpression; | 16 import '../constants/expressions.dart' show ConstantExpression; |
| 17 import '../constants/values.dart' show ConstantValue; | 17 import '../constants/values.dart' show ConstantValue; |
| 18 import '../dart_types.dart' show DartType, InterfaceType; | 18 import '../elements/resolution_types.dart' show DartType, InterfaceType; |
| 19 import '../elements/elements.dart' | 19 import '../elements/elements.dart' |
| 20 show | 20 show |
| 21 ClassElement, | 21 ClassElement, |
| 22 Element, | 22 Element, |
| 23 FunctionElement, | 23 FunctionElement, |
| 24 MemberElement, | 24 MemberElement, |
| 25 MethodElement, | 25 MethodElement, |
| 26 LibraryElement; | 26 LibraryElement; |
| 27 import '../elements/entities.dart'; | 27 import '../elements/entities.dart'; |
| 28 import '../enqueue.dart' show Enqueuer, EnqueueTask, ResolutionEnqueuer; | 28 import '../enqueue.dart' show Enqueuer, EnqueueTask, ResolutionEnqueuer; |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 ClassElement get asyncStarStreamImplementation; | 414 ClassElement get asyncStarStreamImplementation; |
| 415 ClassElement get indexableImplementation; | 415 ClassElement get indexableImplementation; |
| 416 ClassElement get mutableIndexableImplementation; | 416 ClassElement get mutableIndexableImplementation; |
| 417 ClassElement get indexingBehaviorImplementation; | 417 ClassElement get indexingBehaviorImplementation; |
| 418 ClassElement get interceptorImplementation; | 418 ClassElement get interceptorImplementation; |
| 419 | 419 |
| 420 bool isDefaultEqualityImplementation(Element element); | 420 bool isDefaultEqualityImplementation(Element element); |
| 421 bool isInterceptorClass(ClassElement cls); | 421 bool isInterceptorClass(ClassElement cls); |
| 422 bool isNative(Element element); | 422 bool isNative(Element element); |
| 423 } | 423 } |
| OLD | NEW |