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

Unified Diff: pkg/analysis_server/test/integration/integration_test_methods.dart

Issue 1711353003: update setAnalysisRoots to accept package spec file (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge Created 4 years, 10 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: pkg/analysis_server/test/integration/integration_test_methods.dart
diff --git a/pkg/analysis_server/test/integration/integration_test_methods.dart b/pkg/analysis_server/test/integration/integration_test_methods.dart
index af165f2a46399280a71b8df92d8a2595b04c0139..2508d56e155195837b7a0ce904fa538ed3a27fdc 100644
--- a/pkg/analysis_server/test/integration/integration_test_methods.dart
+++ b/pkg/analysis_server/test/integration/integration_test_methods.dart
@@ -429,13 +429,20 @@ abstract class IntegrationTestMixin {
*
* packageRoots ( optional Map<FilePath, FilePath> )
*
- * A mapping from source directories to target directories that should
- * override the normal package: URI resolution mechanism. The analyzer will
- * behave as though each source directory in the map contains a special
+ * A mapping from source directories to package roots that should override
+ * the normal package: URI resolution mechanism.
+ *
+ * If a package root is a directory, then the analyzer will behave as
+ * though the associated source directory in the map contains a special
* pubspec.yaml file which resolves any package: URI to the corresponding
- * path within the target directory. The effect is the same as specifying
- * the target directory as a "--package_root" parameter to the Dart VM when
- * executing any Dart file inside the source directory.
+ * path within that package root directory. The effect is the same as
+ * specifying the package root directory as a "--package_root" parameter to
+ * the Dart VM when executing any Dart file inside the source directory.
+ *
+ * If a package root is a file, then the analyzer will behave as though
+ * that file is a ".packages" file in the source directory. The effect is
+ * the same as specifying the file as a "--packages" parameter to the Dart
+ * VM when executing any Dart file inside the source directory.
*
* Files in any directories that are not overridden by this mapping have
* their package: URI's resolved using the normal pubspec.yaml mechanism.
« no previous file with comments | « pkg/analysis_server/lib/src/context_manager.dart ('k') | pkg/analysis_server/tool/spec/generated/java/AnalysisServer.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698