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

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

Issue 1788673004: Index unqualified unresolved used names. (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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/search/element_references_test.dart
diff --git a/pkg/analysis_server/test/search/element_references_test.dart b/pkg/analysis_server/test/search/element_references_test.dart
index 8a5680d0a8df5db2441118a59d61c77cbf638f2b..e66b0522a78aab7aeb59b9fb5291167bf327bf0d 100644
--- a/pkg/analysis_server/test/search/element_references_test.dart
+++ b/pkg/analysis_server/test/search/element_references_test.dart
@@ -33,7 +33,8 @@ class ElementReferencesTest extends AbstractSearchDomainTest {
int offset = findOffset(search);
await waitForTasksFinished();
Request request = new SearchFindElementReferencesParams(
- testFile, offset, includePotential).toRequest('0');
+ testFile, offset, includePotential)
+ .toRequest('0');
Response response = await waitResponse(request);
var result = new SearchFindElementReferencesResult.fromResponse(response);
searchId = result.id;
@@ -739,7 +740,7 @@ main(A a, p) {
}
}
- fail_potential_method_definedInSubclass() async {
+ test_potential_method_definedInSubclass() async {
addTestFile('''
class Base {
methodInBase() {

Powered by Google App Engine
This is Rietveld 408576698