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

Unified Diff: pkg/compiler/lib/src/compiler.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 side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/compiler.dart
diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
index 31a246dabe43898ed92dc0fffe9ab70601fc6c7c..fac31469f94a500cbfe11ecb6425d7986acd5ccc 100644
--- a/pkg/compiler/lib/src/compiler.dart
+++ b/pkg/compiler/lib/src/compiler.dart
@@ -90,9 +90,11 @@ import 'null_compiler_output.dart' show
NullSink;
import 'patch_parser.dart' show
PatchParserTask;
+import 'resolution/registry.dart' show
+ ResolutionRegistry;
import 'resolution/resolution.dart' show
- ResolutionRegistry,
- ResolverTask,
+ ResolverTask;
+import 'resolution/tree_elements.dart' show
TreeElementMapping;
import 'scanner/token_map.dart' show
TokenMap;
@@ -165,7 +167,7 @@ abstract class Compiler implements DiagnosticListener {
*/
// TODO(johnniwinther): This should not be a [ResolutionRegistry].
final Registry mirrorDependencies =
- new ResolutionRegistry.internal(null, new TreeElementMapping(null));
+ new ResolutionRegistry(null, new TreeElementMapping(null));
final bool enableMinification;

Powered by Google App Engine
This is Rietveld 408576698