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

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

Issue 246013007: Trigger analysis when context.applyChanges request is received. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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/lib/src/domain_context.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/domain_context_test.dart
diff --git a/pkg/analysis_server/test/domain_context_test.dart b/pkg/analysis_server/test/domain_context_test.dart
index 358aea07bb02fa41fa300b678b9a44a519e27b3e..2181565ff7216d509f0d316f4da0636329425c42 100644
--- a/pkg/analysis_server/test/domain_context_test.dart
+++ b/pkg/analysis_server/test/domain_context_test.dart
@@ -42,7 +42,9 @@ class ContextDomainHandlerTest {
ContextDomainHandler.MODIFIED_PARAM : ['ffile:/two.dart'],
ContextDomainHandler.REMOVED_PARAM : ['ffile:/three.dart']
});
+ expect(server.contextWorkQueue, isEmpty);
Response response = handler.handleRequest(request);
+ expect(server.contextWorkQueue, hasLength(1));
expect(response.toJson(), equals({
Response.ID: '0',
Response.ERROR: null
« no previous file with comments | « pkg/analysis_server/lib/src/domain_context.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698