Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1187)

Side by Side Diff: pkg/compiler/lib/src/common/backend_api.dart

Issue 1286993004: Split resolution into several libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698