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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 DeserializerPlugin get deserializer => const DeserializerPlugin(); | 390 DeserializerPlugin get deserializer => const DeserializerPlugin(); |
391 } | 391 } |
392 | 392 |
393 /// Interface providing access to core classes used by the backend. | 393 /// Interface providing access to core classes used by the backend. |
394 abstract class BackendClasses { | 394 abstract class BackendClasses { |
395 ClassElement get intImplementation; | 395 ClassElement get intImplementation; |
396 ClassElement get doubleImplementation; | 396 ClassElement get doubleImplementation; |
397 ClassElement get numImplementation; | 397 ClassElement get numImplementation; |
398 ClassElement get stringImplementation; | 398 ClassElement get stringImplementation; |
399 ClassElement get listImplementation; | 399 ClassElement get listImplementation; |
| 400 ClassElement get mutableListImplementation; |
400 ClassElement get growableListImplementation; | 401 ClassElement get growableListImplementation; |
401 ClassElement get fixedListImplementation; | 402 ClassElement get fixedListImplementation; |
402 ClassElement get constListImplementation; | 403 ClassElement get constListImplementation; |
403 ClassElement get mapImplementation; | 404 ClassElement get mapImplementation; |
404 ClassElement get constMapImplementation; | 405 ClassElement get constMapImplementation; |
405 ClassElement get functionImplementation; | 406 ClassElement get functionImplementation; |
406 ClassElement get typeImplementation; | 407 ClassElement get typeImplementation; |
407 ClassElement get boolImplementation; | 408 ClassElement get boolImplementation; |
408 ClassElement get nullImplementation; | 409 ClassElement get nullImplementation; |
409 ClassElement get uint32Implementation; | 410 ClassElement get uint32Implementation; |
410 ClassElement get uint31Implementation; | 411 ClassElement get uint31Implementation; |
411 ClassElement get positiveIntImplementation; | 412 ClassElement get positiveIntImplementation; |
412 ClassElement get syncStarIterableImplementation; | 413 ClassElement get syncStarIterableImplementation; |
413 ClassElement get asyncFutureImplementation; | 414 ClassElement get asyncFutureImplementation; |
414 ClassElement get asyncStarStreamImplementation; | 415 ClassElement get asyncStarStreamImplementation; |
| 416 ClassElement get indexableImplementation; |
| 417 ClassElement get mutableIndexableImplementation; |
| 418 |
| 419 bool isDefaultEqualityImplementation(Element element); |
415 } | 420 } |
OLD | NEW |