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

Side by Side Diff: pkg/compiler/lib/src/dart_backend/dart_backend.dart

Issue 1394923003: Use WorldImpact for element dependencies in deferred_load (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 dart_backend; 5 library dart_backend;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 import 'dart:math' show max; 8 import 'dart:math' show max;
9 9
10 import '../../compiler.dart' show 10 import '../../compiler.dart' show
11 CompilerOutputProvider; 11 CompilerOutputProvider;
12 import '../common.dart'; 12 import '../common.dart';
13 import '../common/backend_api.dart' show 13 import '../common/backend_api.dart' show
14 Backend; 14 Backend;
15 import '../common/codegen.dart' show 15 import '../common/codegen.dart' show
16 CodegenWorkItem; 16 CodegenWorkItem;
17 import '../common/names.dart' show 17 import '../common/names.dart' show
18 Selectors, 18 Selectors,
19 Uris; 19 Uris;
20 import '../common/registry.dart' show 20 import '../common/registry.dart' show
21 Registry; 21 Registry;
22 import '../common/resolution.dart' show 22 import '../common/resolution.dart' show
23 Resolution, 23 Resolution,
24 ResolutionCallbacks, 24 ResolutionCallbacks,
25 ResolutionWorldImpact, 25 ResolutionImpact,
26 TransformedWorldImpact; 26 TransformedWorldImpact;
27 import '../common/tasks.dart' show 27 import '../common/tasks.dart' show
28 CompilerTask; 28 CompilerTask;
29 import '../compiler.dart' show 29 import '../compiler.dart' show
30 Compiler; 30 Compiler;
31 import '../compile_time_constants.dart'; 31 import '../compile_time_constants.dart';
32 import '../constants/constant_system.dart'; 32 import '../constants/constant_system.dart';
33 import '../constants/expressions.dart'; 33 import '../constants/expressions.dart';
34 import '../constants/values.dart'; 34 import '../constants/values.dart';
35 import '../dart_types.dart'; 35 import '../dart_types.dart';
(...skipping 15 matching lines...) Expand all
51 Selector; 51 Selector;
52 import '../universe/universe.dart' show 52 import '../universe/universe.dart' show
53 UniverseSelector; 53 UniverseSelector;
54 import '../util/util.dart'; 54 import '../util/util.dart';
55 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; 55 import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
56 56
57 part 'backend.dart'; 57 part 'backend.dart';
58 part 'renamer.dart'; 58 part 'renamer.dart';
59 part 'placeholder_collector.dart'; 59 part 'placeholder_collector.dart';
60 part 'outputter.dart'; 60 part 'outputter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698