| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:async'; | 5 import 'dart:async'; |
| 6 | 6 |
| 7 import 'package:analysis_server/protocol/protocol.dart'; | 7 import 'package:analysis_server/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_constants.dart'; |
| 8 import 'package:analysis_server/protocol/protocol_generated.dart'; | 9 import 'package:analysis_server/protocol/protocol_generated.dart'; |
| 9 import 'package:analysis_server/src/constants.dart'; | |
| 10 import 'package:analysis_server/src/search/search_domain.dart'; | 10 import 'package:analysis_server/src/search/search_domain.dart'; |
| 11 import 'package:analysis_server/src/services/index/index.dart' | 11 import 'package:analysis_server/src/services/index/index.dart' |
| 12 show Index, createMemoryIndex; | 12 show Index, createMemoryIndex; |
| 13 import 'package:analyzer_plugin/protocol/protocol_common.dart'; | 13 import 'package:analyzer_plugin/protocol/protocol_common.dart'; |
| 14 import 'package:test/test.dart'; | 14 import 'package:test/test.dart'; |
| 15 | 15 |
| 16 import '../analysis_abstract.dart'; | 16 import '../analysis_abstract.dart'; |
| 17 | 17 |
| 18 class AbstractSearchDomainTest extends AbstractAnalysisTest { | 18 class AbstractSearchDomainTest extends AbstractAnalysisTest { |
| 19 final Map<String, _ResultSet> resultSets = {}; | 19 final Map<String, _ResultSet> resultSets = {}; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 return kindName; | 72 return kindName; |
| 73 } else { | 73 } else { |
| 74 return '$kindName $name'; | 74 return '$kindName $name'; |
| 75 } | 75 } |
| 76 }).join('\n'); | 76 }).join('\n'); |
| 77 } | 77 } |
| 78 | 78 |
| 79 @override | 79 @override |
| 80 void processNotification(Notification notification) { | 80 void processNotification(Notification notification) { |
| 81 super.processNotification(notification); | 81 super.processNotification(notification); |
| 82 if (notification.event == SEARCH_RESULTS) { | 82 if (notification.event == SEARCH_NOTIFICATION_RESULTS) { |
| 83 var params = new SearchResultsParams.fromNotification(notification); | 83 var params = new SearchResultsParams.fromNotification(notification); |
| 84 String id = params.id; | 84 String id = params.id; |
| 85 _ResultSet resultSet = resultSets[id]; | 85 _ResultSet resultSet = resultSets[id]; |
| 86 if (resultSet == null) { | 86 if (resultSet == null) { |
| 87 resultSet = new _ResultSet(id); | 87 resultSet = new _ResultSet(id); |
| 88 resultSets[id] = resultSet; | 88 resultSets[id] = resultSet; |
| 89 } | 89 } |
| 90 resultSet.results.addAll(params.results); | 90 resultSet.results.addAll(params.results); |
| 91 resultSet.done = params.isLast; | 91 resultSet.done = params.isLast; |
| 92 } | 92 } |
| (...skipping 18 matching lines...) Expand all Loading... |
| 111 } | 111 } |
| 112 } | 112 } |
| 113 | 113 |
| 114 class _ResultSet { | 114 class _ResultSet { |
| 115 final String id; | 115 final String id; |
| 116 final List<SearchResult> results = <SearchResult>[]; | 116 final List<SearchResult> results = <SearchResult>[]; |
| 117 bool done = false; | 117 bool done = false; |
| 118 | 118 |
| 119 _ResultSet(this.id); | 119 _ResultSet(this.id); |
| 120 } | 120 } |
| OLD | NEW |