| 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; |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 ClassElement get uint31Implementation; | 411 ClassElement get uint31Implementation; |
| 412 ClassElement get positiveIntImplementation; | 412 ClassElement get positiveIntImplementation; |
| 413 ClassElement get syncStarIterableImplementation; | 413 ClassElement get syncStarIterableImplementation; |
| 414 ClassElement get asyncFutureImplementation; | 414 ClassElement get asyncFutureImplementation; |
| 415 ClassElement get asyncStarStreamImplementation; | 415 ClassElement get asyncStarStreamImplementation; |
| 416 ClassElement get indexableImplementation; | 416 ClassElement get indexableImplementation; |
| 417 ClassElement get mutableIndexableImplementation; | 417 ClassElement get mutableIndexableImplementation; |
| 418 ClassElement get indexingBehaviorImplementation; | 418 ClassElement get indexingBehaviorImplementation; |
| 419 ClassElement get interceptorImplementation; | 419 ClassElement get interceptorImplementation; |
| 420 | 420 |
| 421 bool isDefaultEqualityImplementation(Element element); | 421 bool isDefaultEqualityImplementation(MemberElement element); |
| 422 bool isInterceptorClass(ClassElement cls); | 422 bool isInterceptorClass(ClassElement cls); |
| 423 bool isNativeClass(ClassElement element); | 423 bool isNativeClass(ClassElement element); |
| 424 bool isNativeMember(MemberElement element); | 424 bool isNativeMember(MemberElement element); |
| 425 } | 425 } |
| OLD | NEW |