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

Unified Diff: sdk/lib/_internal/compiler/implementation/deferred_load.dart

Issue 17759007: First pass at asynchronous input loading in dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove withCurrentElementAsync Created 7 years, 5 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: sdk/lib/_internal/compiler/implementation/deferred_load.dart
diff --git a/sdk/lib/_internal/compiler/implementation/deferred_load.dart b/sdk/lib/_internal/compiler/implementation/deferred_load.dart
index 53eca9743ed7c90cbebcf36cd64e57b6d68b5c56..4b6154846844d5b1b2d3e3f0e99206ed38aaf91e 100644
--- a/sdk/lib/_internal/compiler/implementation/deferred_load.dart
+++ b/sdk/lib/_internal/compiler/implementation/deferred_load.dart
@@ -4,6 +4,7 @@
library deferred_load;
+import 'dart:async';
ahe 2013/08/06 16:29:17 Remove unneeded import.
Johnni Winther 2013/08/27 11:05:00 Done.
import 'dart:collection'
show LinkedHashMap,
LinkedHashSet;
@@ -47,8 +48,6 @@ class DeferredLoadTask extends CompilerTask {
/// should become obsolete.
final Set<Element> allDeferredElements = new LinkedHashSet<Element>();
- ClassElement cachedDeferredLibraryClass;
-
DeferredLoadTask(Compiler compiler) : super(compiler);
String get name => 'Deferred Loading';

Powered by Google App Engine
This is Rietveld 408576698