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

Unified Diff: pkg/analyzer/lib/context/context_root.dart

Issue 2913493002: Add the analysis options path to the diagnostics page. (Closed)
Patch Set: move the root.optionsFilePath field to the ContextRoot class Created 3 years, 7 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/analyzer/lib/context/context_root.dart
diff --git a/pkg/analyzer/lib/context/context_root.dart b/pkg/analyzer/lib/context/context_root.dart
index cfc47ff8f99c2c0ebbadbf3ed75c5cbb49422994..0bd64e7b3e7aa9939f41fd83b2274b8c153f6d2c 100644
--- a/pkg/analyzer/lib/context/context_root.dart
+++ b/pkg/analyzer/lib/context/context_root.dart
@@ -24,6 +24,12 @@ class ContextRoot {
final List<String> exclude;
/**
+ * An informative value for the file path that the analysis options were read
+ * from. This value can be `null`.
Brian Wilkerson 2017/05/30 14:26:39 Add a reason for 'null', such as "if there is no a
devoncarew 2017/05/30 20:23:32 Done.
+ */
+ String optionsFilePath;
+
+ /**
* Initialize a newly created context root.
*/
ContextRoot(this.root, this.exclude);

Powered by Google App Engine
This is Rietveld 408576698