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

Unified Diff: pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart

Issue 1838933003: Format code in analysis_server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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/lib/plugin/edit/assist/assist_core.dart
diff --git a/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart b/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart
index 14bdcb3df2635e2dded99147548dae68d5a118bc..c2162601f1b862a3b5f80623fcfcad65cba3f8b1 100644
--- a/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart
+++ b/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart
@@ -26,9 +26,9 @@ class Assist {
* A comparator that can be used to sort assists by their relevance. The most
* relevant assists will be sorted before assists with a lower relevance.
*/
- static final Comparator<Assist> SORT_BY_RELEVANCE = (Assist firstAssist,
- Assist secondAssist) =>
- firstAssist.kind.relevance - secondAssist.kind.relevance;
+ static final Comparator<Assist> SORT_BY_RELEVANCE =
+ (Assist firstAssist, Assist secondAssist) =>
+ firstAssist.kind.relevance - secondAssist.kind.relevance;
/**
* A description of the assist being proposed.
« no previous file with comments | « pkg/analysis_server/benchmark/integration/local_runner.dart ('k') | pkg/analysis_server/lib/plugin/edit/fix/fix_core.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698