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

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

Issue 2615303002: Fix Quick Fix tests that used AnalysisContext. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | pkg/analysis_server/test/services/correction/fix_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/abstract_context.dart
diff --git a/pkg/analysis_server/test/abstract_context.dart b/pkg/analysis_server/test/abstract_context.dart
index ed9bb2f48e18b7a6f1d132e62a6a39cb9f61cd49..6d804be1d7b261a41783d9217e617d66e1736fd9 100644
--- a/pkg/analysis_server/test/abstract_context.dart
+++ b/pkg/analysis_server/test/abstract_context.dart
@@ -113,6 +113,9 @@ class AbstractContextTest {
* Performs all analysis tasks in [context].
*/
void performAllAnalysisTasks() {
+ if (enableNewAnalysisDriver) {
+ return;
+ }
while (true) {
engine.AnalysisResult result = context.performAnalysisTask();
if (!result.hasMoreWork) {
« no previous file with comments | « no previous file | pkg/analysis_server/test/services/correction/fix_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698