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

Unified Diff: pkg/analysis_server/test/search/abstract_search_domain.dart

Issue 2526363002: Fix for search references when the element is null. (Closed)
Patch Set: Created 4 years, 1 month 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
Index: pkg/analysis_server/test/search/abstract_search_domain.dart
diff --git a/pkg/analysis_server/test/search/abstract_search_domain.dart b/pkg/analysis_server/test/search/abstract_search_domain.dart
index b59ac7d14a41108032fe1a9259c45b4679d00a8b..dbdacdf004f473228209a830a6db2dc6aad06080 100644
--- a/pkg/analysis_server/test/search/abstract_search_domain.dart
+++ b/pkg/analysis_server/test/search/abstract_search_domain.dart
@@ -78,6 +78,7 @@ class AbstractSearchDomainTest extends AbstractAnalysisTest {
@override
void processNotification(Notification notification) {
+ super.processNotification(notification);
if (notification.event == SEARCH_RESULTS) {
var params = new SearchResultsParams.fromNotification(notification);
String id = params.id;

Powered by Google App Engine
This is Rietveld 408576698