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

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

Issue 562123002: Support parameter access in analyzer2dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 41a83124276fd571d3d16fcab09c65ab52d11269..e7e7ca7dc9a8461afb3832a7499ca9444481f791 100644
--- a/sdk/lib/_internal/compiler/implementation/deferred_load.dart
+++ b/sdk/lib/_internal/compiler/implementation/deferred_load.dart
@@ -305,7 +305,7 @@ class DeferredLoadTask extends CompilerTask {
assert(treeElements != null);
for (Element dependency in treeElements.allElements) {
- if (Elements.isLocal(dependency) && !dependency.isFunction) continue;
+ if (dependency.isLocal && !dependency.isFunction) continue;
if (dependency.isErroneous) continue;
if (dependency.isTypeVariable) continue;

Powered by Google App Engine
This is Rietveld 408576698