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

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

Issue 1562023002: Add test of unittests. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments Created 4 years, 11 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 | « no previous file | pkg/compiler/lib/src/compiler.dart » ('j') | tests/compiler/dart2js/analyze_test_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « no previous file | pkg/compiler/lib/src/compiler.dart » ('j') | tests/compiler/dart2js/analyze_test_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698