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

Side by Side Diff: pkg/analysis_server/test/analysis/notification_implemented_test.dart

Issue 1801883002: Remove old index and search implementations. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
OLDNEW
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 library test.analysis.notification.implemented; 5 library test.analysis.notification.implemented;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analysis_server/plugin/protocol/protocol.dart'; 9 import 'package:analysis_server/plugin/protocol/protocol.dart';
10 import 'package:analysis_server/src/constants.dart'; 10 import 'package:analysis_server/src/constants.dart';
11 import 'package:analysis_server/src/services/index/index.dart'; 11 import 'package:analysis_server/src/services/index/index.dart';
12 import 'package:analysis_server/src/services/index/local_memory_index.dart';
13 import 'package:test_reflective_loader/test_reflective_loader.dart'; 12 import 'package:test_reflective_loader/test_reflective_loader.dart';
14 import 'package:unittest/unittest.dart'; 13 import 'package:unittest/unittest.dart';
15 14
16 import '../analysis_abstract.dart'; 15 import '../analysis_abstract.dart';
17 import '../utils.dart'; 16 import '../utils.dart';
18 17
19 main() { 18 main() {
20 initializeTestEnvironment(); 19 initializeTestEnvironment();
21 defineReflectiveTests(AnalysisNotificationImplementedTest); 20 defineReflectiveTests(AnalysisNotificationImplementedTest);
22 } 21 }
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 for (ImplementedMember member in implementedMembers) { 88 for (ImplementedMember member in implementedMembers) {
90 if (member.offset == offset) { 89 if (member.offset == offset) {
91 fail('Unexpected implemented member at $offset' 90 fail('Unexpected implemented member at $offset'
92 ' in $implementedMembers'); 91 ' in $implementedMembers');
93 } 92 }
94 } 93 }
95 } 94 }
96 95
97 @override 96 @override
98 Index createIndex() { 97 Index createIndex() {
99 return createLocalMemoryIndex(); 98 return createMemoryIndex();
100 } 99 }
101 100
102 /** 101 /**
103 * Subscribe for `IMPLEMENTED` and wait for the notification. 102 * Subscribe for `IMPLEMENTED` and wait for the notification.
104 */ 103 */
105 Future prepareImplementedElements() { 104 Future prepareImplementedElements() {
106 subscribeForImplemented(); 105 subscribeForImplemented();
107 return waitForImplementedElements(); 106 return waitForImplementedElements();
108 } 107 }
109 108
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 Future waitForNotification(int times) { 428 Future waitForNotification(int times) {
430 if (times == 0 || implementedClasses != null) { 429 if (times == 0 || implementedClasses != null) {
431 return new Future.value(); 430 return new Future.value();
432 } 431 }
433 return new Future.delayed( 432 return new Future.delayed(
434 new Duration(milliseconds: 1), () => waitForNotification(times - 1)); 433 new Duration(milliseconds: 1), () => waitForNotification(times - 1));
435 } 434 }
436 return waitForNotification(30000); 435 return waitForNotification(30000);
437 } 436 }
438 } 437 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698