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 js_backend.backend; | 5 library js_backend.backend; |
6 | 6 |
7 import 'dart:async' show Future; | 7 import 'dart:async' show Future; |
8 | 8 |
9 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; | 9 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 import '../js/rewrite_async.dart'; | 43 import '../js/rewrite_async.dart'; |
44 import '../js_emitter/js_emitter.dart' show CodeEmitterTask; | 44 import '../js_emitter/js_emitter.dart' show CodeEmitterTask; |
45 import '../library_loader.dart' show LibraryLoader, LoadedLibraries; | 45 import '../library_loader.dart' show LibraryLoader, LoadedLibraries; |
46 import '../native/native.dart' as native; | 46 import '../native/native.dart' as native; |
47 import '../ssa/ssa.dart' show SsaFunctionCompiler; | 47 import '../ssa/ssa.dart' show SsaFunctionCompiler; |
48 import '../tree/tree.dart'; | 48 import '../tree/tree.dart'; |
49 import '../types/types.dart'; | 49 import '../types/types.dart'; |
50 import '../universe/call_structure.dart' show CallStructure; | 50 import '../universe/call_structure.dart' show CallStructure; |
51 import '../universe/feature.dart'; | 51 import '../universe/feature.dart'; |
52 import '../universe/selector.dart' show Selector; | 52 import '../universe/selector.dart' show Selector; |
53 import '../universe/universe.dart'; | 53 import '../universe/world_builder.dart'; |
54 import '../universe/use.dart' | 54 import '../universe/use.dart' |
55 show DynamicUse, StaticUse, StaticUseKind, TypeUse, TypeUseKind; | 55 show DynamicUse, StaticUse, StaticUseKind, TypeUse, TypeUseKind; |
56 import '../universe/world_impact.dart' | 56 import '../universe/world_impact.dart' |
57 show | 57 show |
58 ImpactStrategy, | 58 ImpactStrategy, |
59 ImpactUseCase, | 59 ImpactUseCase, |
60 TransformedWorldImpact, | 60 TransformedWorldImpact, |
61 WorldImpact, | 61 WorldImpact, |
62 WorldImpactBuilder, | 62 WorldImpactBuilder, |
63 WorldImpactVisitor, | 63 WorldImpactVisitor, |
(...skipping 3201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3265 ClassElement get mapImplementation => helpers.mapLiteralClass; | 3265 ClassElement get mapImplementation => helpers.mapLiteralClass; |
3266 ClassElement get constMapImplementation => helpers.constMapLiteralClass; | 3266 ClassElement get constMapImplementation => helpers.constMapLiteralClass; |
3267 ClassElement get typeImplementation => helpers.typeLiteralClass; | 3267 ClassElement get typeImplementation => helpers.typeLiteralClass; |
3268 ClassElement get boolImplementation => helpers.jsBoolClass; | 3268 ClassElement get boolImplementation => helpers.jsBoolClass; |
3269 ClassElement get nullImplementation => helpers.jsNullClass; | 3269 ClassElement get nullImplementation => helpers.jsNullClass; |
3270 ClassElement get syncStarIterableImplementation => helpers.syncStarIterable; | 3270 ClassElement get syncStarIterableImplementation => helpers.syncStarIterable; |
3271 ClassElement get asyncFutureImplementation => helpers.futureImplementation; | 3271 ClassElement get asyncFutureImplementation => helpers.futureImplementation; |
3272 ClassElement get asyncStarStreamImplementation => helpers.controllerStream; | 3272 ClassElement get asyncStarStreamImplementation => helpers.controllerStream; |
3273 ClassElement get functionImplementation => helpers.coreClasses.functionClass; | 3273 ClassElement get functionImplementation => helpers.coreClasses.functionClass; |
3274 } | 3274 } |
OLD | NEW |