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

Unified Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 1180883003: Don't create navigation regions for not existing sources. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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 | « pkg/analysis_server/lib/src/computer/computer_navigation.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/engine.dart
diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
index 2e37978d566ac0ecf5c667ae5503e6b451e7716c..c827d3cbba3713754ef3bc9d2e1569ac3139f0df 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -5822,7 +5822,11 @@ class AnalysisEngine {
*/
List<Plugin> get supportedPlugins {
if (_supportedPlugins == null) {
- _supportedPlugins = <Plugin>[enginePlugin, commandLinePlugin, optionsPlugin];
+ _supportedPlugins = <Plugin>[
+ enginePlugin,
+ commandLinePlugin,
+ optionsPlugin
+ ];
}
return _supportedPlugins;
}
« no previous file with comments | « pkg/analysis_server/lib/src/computer/computer_navigation.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698