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

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

Issue 1376863004: Avoid eager enqueueing from resolution (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix deferred+mirrors bug. 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
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/backend.dart ('k') | pkg/compiler/lib/src/deferred_load.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/backend_api.dart' show 12 import '../common/backend_api.dart' show
13 Backend; 13 Backend;
14 import '../common/codegen.dart' show 14 import '../common/codegen.dart' show
15 CodegenWorkItem; 15 CodegenWorkItem;
16 import '../common/names.dart' show 16 import '../common/names.dart' show
17 Selectors, 17 Selectors,
18 Uris; 18 Uris;
19 import '../common/registry.dart' show 19 import '../common/registry.dart' show
20 Registry; 20 Registry;
21 import '../common/resolution.dart' show 21 import '../common/resolution.dart' show
22 Resolution, 22 Resolution,
23 ResolutionCallbacks; 23 ResolutionCallbacks,
24 ResolutionWorldImpact,
25 TransformedWorldImpact;
24 import '../common/tasks.dart' show 26 import '../common/tasks.dart' show
25 CompilerTask; 27 CompilerTask;
26 import '../compiler.dart' show 28 import '../compiler.dart' show
27 Compiler; 29 Compiler;
28 import '../compile_time_constants.dart'; 30 import '../compile_time_constants.dart';
29 import '../constants/constant_system.dart'; 31 import '../constants/constant_system.dart';
30 import '../constants/expressions.dart'; 32 import '../constants/expressions.dart';
31 import '../constants/values.dart'; 33 import '../constants/values.dart';
32 import '../dart_types.dart'; 34 import '../dart_types.dart';
33 import '../diagnostics/diagnostic_listener.dart'; 35 import '../diagnostics/diagnostic_listener.dart';
(...skipping 23 matching lines...) Expand all
57 Selector; 59 Selector;
58 import '../universe/universe.dart' show 60 import '../universe/universe.dart' show
59 UniverseSelector; 61 UniverseSelector;
60 import '../util/util.dart'; 62 import '../util/util.dart';
61 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; 63 import 'backend_ast_to_frontend_ast.dart' as backend2frontend;
62 64
63 part 'backend.dart'; 65 part 'backend.dart';
64 part 'renamer.dart'; 66 part 'renamer.dart';
65 part 'placeholder_collector.dart'; 67 part 'placeholder_collector.dart';
66 part 'outputter.dart'; 68 part 'outputter.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/backend.dart ('k') | pkg/compiler/lib/src/deferred_load.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698