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

Unified Diff: pkg/analyzer_cli/lib/src/plugin/plugin_manager.dart

Issue 1975963002: Support the name analysis_options.yaml for analysis options files (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 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_cli/lib/src/plugin/plugin_manager.dart
diff --git a/pkg/analyzer_cli/lib/src/plugin/plugin_manager.dart b/pkg/analyzer_cli/lib/src/plugin/plugin_manager.dart
index 13a820282af125a3086125529340321f779fe7e0..7c819fd44dc1672ef7f058e5a259be2d50eba63f 100644
--- a/pkg/analyzer_cli/lib/src/plugin/plugin_manager.dart
+++ b/pkg/analyzer_cli/lib/src/plugin/plugin_manager.dart
@@ -11,9 +11,9 @@ import 'package:path/path.dart' as path;
const _manifestFileName = 'plugins.yaml';
-/// Given a local configuration (as defined in `.analysis_options`)
-/// and information from a plugin manifest, return plugin info
-/// appropriate for configuring this plugin.
+/// Given a local configuration (as defined in an analysis options file) and
+/// information from a plugin manifest, return plugin info appropriate for
+/// configuring this plugin.
PluginInfo combine(PluginInfo localConfig, PluginInfo manifestInfo) {
return new PluginInfo(
name: localConfig.name,

Powered by Google App Engine
This is Rietveld 408576698