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

Unified Diff: pkg/analysis_server/benchmark/perf/performance_tests.dart

Issue 1386003002: Benchmarking for navigation results. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/benchmark/perf/analysis_timing_tests.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/benchmark/perf/performance_tests.dart
diff --git a/pkg/analysis_server/benchmark/perf/performance_tests.dart b/pkg/analysis_server/benchmark/perf/performance_tests.dart
index a926e33c98dedb9cc5cd2c63a46e42fac95bc57d..3dd1842c6a9004a3108bea11ad9a0ef39b70400e 100644
--- a/pkg/analysis_server/benchmark/perf/performance_tests.dart
+++ b/pkg/analysis_server/benchmark/perf/performance_tests.dart
@@ -25,9 +25,8 @@ abstract class AbstractAnalysisServerPerformanceTest
* Send the server an 'analysis.setAnalysisRoots' command directing it to
* analyze [sourceDirectory].
*/
- Future setAnalysisRoot() {
- return sendAnalysisSetAnalysisRoots([sourceDirectory.path], []);
- }
+ Future setAnalysisRoot() =>
+ sendAnalysisSetAnalysisRoots([sourceDirectory.path], []);
/**
* Enable [SERVER_STATUS] notifications so that [analysisFinished]
@@ -69,7 +68,5 @@ abstract class AbstractAnalysisServerPerformanceTest
* After every test, the server is stopped.
*/
@override
- Future tearDown() {
- return shutdownIfNeeded();
- }
+ Future tearDown() => shutdownIfNeeded();
}
« no previous file with comments | « pkg/analysis_server/benchmark/perf/analysis_timing_tests.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698