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

Unified Diff: pkg/analysis_server/test/mocks.dart

Issue 629043002: Remove from AnalysisServer the 'test_' methods which now has non-test implementations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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/test/domain_analysis_test.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/test/mocks.dart
diff --git a/pkg/analysis_server/test/mocks.dart b/pkg/analysis_server/test/mocks.dart
index 3cd807976dbe517a7e9940974fc0319101e08ad9..1bb28d5a35c47ca0d12963f708702d05cbece4f0 100644
--- a/pkg/analysis_server/test/mocks.dart
+++ b/pkg/analysis_server/test/mocks.dart
@@ -61,7 +61,7 @@ Future pumpEventQueue([int times = 20]) {
* all its scheduled tasks.
*/
Future waitForServerOperationsPerformed(AnalysisServer server) {
- if (server.test_areOperationsFinished()) {
+ if (server.isAnalysisComplete()) {
return new Future.value();
}
// We use a delayed future to allow microtask events to finish. The
« no previous file with comments | « pkg/analysis_server/test/domain_analysis_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698