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 '../compiler.dart' show | 9 import '../compiler.dart' show |
10 Compiler; | 10 Compiler; |
(...skipping 28 matching lines...) Expand all Loading... |
39 SourceInformationStrategy; | 39 SourceInformationStrategy; |
40 import '../js_backend/js_backend.dart' as js_backend show | 40 import '../js_backend/js_backend.dart' as js_backend show |
41 JavaScriptBackend; | 41 JavaScriptBackend; |
42 import '../library_loader.dart' show | 42 import '../library_loader.dart' show |
43 LibraryLoader, | 43 LibraryLoader, |
44 LoadedLibraries; | 44 LoadedLibraries; |
45 import '../native/native.dart' as native show | 45 import '../native/native.dart' as native show |
46 NativeEnqueuer; | 46 NativeEnqueuer; |
47 import '../patch_parser.dart' show | 47 import '../patch_parser.dart' show |
48 checkNativeAnnotation; | 48 checkNativeAnnotation; |
49 import '../resolution/resolution.dart' show | 49 import '../resolution/tree_elements.dart' show |
50 TreeElements; | 50 TreeElements; |
51 | 51 |
52 import 'codegen.dart' show | 52 import 'codegen.dart' show |
53 CodegenWorkItem; | 53 CodegenWorkItem; |
54 import 'registry.dart' show | 54 import 'registry.dart' show |
55 Registry; | 55 Registry; |
56 import 'resolution.dart' show | 56 import 'resolution.dart' show |
57 ResolutionCallbacks; | 57 ResolutionCallbacks; |
58 import 'tasks.dart' show | 58 import 'tasks.dart' show |
59 CompilerTask; | 59 CompilerTask; |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 | 355 |
356 void forgetElement(Element element) {} | 356 void forgetElement(Element element) {} |
357 | 357 |
358 void registerMainHasArguments(Enqueuer enqueuer) {} | 358 void registerMainHasArguments(Enqueuer enqueuer) {} |
359 | 359 |
360 void registerAsyncMarker(FunctionElement element, | 360 void registerAsyncMarker(FunctionElement element, |
361 Enqueuer enqueuer, | 361 Enqueuer enqueuer, |
362 Registry registry) {} | 362 Registry registry) {} |
363 } | 363 } |
364 | 364 |
OLD | NEW |