| 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;
|
|
|
|
|