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

Unified Diff: pkg/compiler/lib/src/enqueue.dart

Issue 1284593003: Remove dart2jslib.dart (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
« no previous file with comments | « pkg/compiler/lib/src/elements/modelx.dart ('k') | pkg/compiler/lib/src/helpers/helpers.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/enqueue.dart
diff --git a/pkg/compiler/lib/src/enqueue.dart b/pkg/compiler/lib/src/enqueue.dart
index 55deafc40041e37bc820d40482c0e9de2f503e92..0dda9f61db03d3b09cc54b586f35f9bf801fb067 100644
--- a/pkg/compiler/lib/src/enqueue.dart
+++ b/pkg/compiler/lib/src/enqueue.dart
@@ -6,20 +6,29 @@ library dart2js.enqueue;
import 'dart:collection' show
Queue;
-import 'dart2jslib.dart' show
- invariant,
- CodegenWorkItem,
- Compiler,
- CompilerTask,
- DeferredAction,
- DeferredTask,
+
+import 'common/work.dart' show
ItemCompilationContext,
- Registry,
- ResolutionWorkItem,
WorkItem;
+import 'common/tasks.dart' show
+ CompilerTask,
+ DeferredAction,
+ DeferredTask;
+import 'common/registry.dart' show
+ Registry;
+import 'common/codegen.dart' show
+ CodegenWorkItem;
+import 'common/resolution.dart' show
+ ResolutionWorkItem;
+import 'compiler.dart' show
+ Compiler;
import 'dart_types.dart' show
DartType,
InterfaceType;
+import 'diagnostics/invariant.dart' show
+ invariant;
+import 'diagnostics/spannable.dart' show
+ SpannableAssertionFailure;
import 'elements/elements.dart' show
AnalyzableElement,
AstElement,
@@ -44,8 +53,7 @@ import 'tree/tree.dart' show
import 'universe/universe.dart';
import 'util/util.dart' show
Link,
- Setlet,
- SpannableAssertionFailure;
+ Setlet;
typedef ItemCompilationContext ItemCompilationContextCreator();
« no previous file with comments | « pkg/compiler/lib/src/elements/modelx.dart ('k') | pkg/compiler/lib/src/helpers/helpers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698