| Index: pkg/compiler/lib/src/apiimpl.dart
|
| diff --git a/pkg/compiler/lib/src/apiimpl.dart b/pkg/compiler/lib/src/apiimpl.dart
|
| index 2c3c9a216f50322564c93594e8221262374e4016..8f81d151dcce9e238914c8b690bb1013e1e5b3d2 100644
|
| --- a/pkg/compiler/lib/src/apiimpl.dart
|
| +++ b/pkg/compiler/lib/src/apiimpl.dart
|
| @@ -435,7 +435,10 @@ class CompilerImpl extends Compiler {
|
| if (packages == null) {
|
| setupFutures.add(setupPackages(uri));
|
| }
|
| - return Future.wait(setupFutures).then((_) => super.analyzeUri(uri));
|
| + return Future.wait(setupFutures).then((_) {
|
| + return super.analyzeUri(uri,
|
| + skipLibraryWithPartOfTag: skipLibraryWithPartOfTag);
|
| + });
|
| }
|
|
|
| Future setupPackages(Uri uri) {
|
|
|