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

Unified Diff: pkg/analysis_server/test/analysis/update_content_test.dart

Issue 2884853002: cleanup unused incremental resolution (Closed)
Patch Set: rebase Created 3 years, 7 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/analyzer/lib/src/context/context.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/test/analysis/update_content_test.dart
diff --git a/pkg/analysis_server/test/analysis/update_content_test.dart b/pkg/analysis_server/test/analysis/update_content_test.dart
index ba1dbdf145ead35d43c81f4ab98db96ec328e902..36ca580f693f915de456516003853cfd2ee90e54 100644
--- a/pkg/analysis_server/test/analysis/update_content_test.dart
+++ b/pkg/analysis_server/test/analysis/update_content_test.dart
@@ -99,6 +99,10 @@ class UpdateContentTest extends AbstractAnalysisTest {
}
test_indexUnitAfterNopChange() async {
+ // AnalysisContext incremental analysis has been removed
+ if (!enableNewAnalysisDriver) return;
+ throw 'is this test used by the new analysis driver?';
+
var testUnitMatcher = compilationUnitMatcher(testFile) as dynamic;
createProject();
addTestFile('main() { print(1); }');
@@ -220,6 +224,10 @@ f() {}
}
test_removeOverlay_incrementalChange() async {
+ // AnalysisContext incremental analysis has been removed
+ if (!enableNewAnalysisDriver) return;
+ throw 'is this test used by the new analysis driver?';
+
createProject();
addTestFile('main() { print(1); }');
await server.onAnalysisComplete;
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/context/context.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698