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

Unified Diff: pkg/analysis_server/lib/src/domain_kythe.dart

Issue 3006693002: Add an integration test for kythe support with bug fixes (Closed)
Patch Set: Created 3 years, 4 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/doc/api.html ('k') | pkg/analysis_server/lib/src/services/kythe/kythe_visitors.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/domain_kythe.dart
diff --git a/pkg/analysis_server/lib/src/domain_kythe.dart b/pkg/analysis_server/lib/src/domain_kythe.dart
index cbe971cc2ef44a16795a1107b5fe6768980009df..895bd82119db92131b8e0db5e2e2bbf98198ecd1 100644
--- a/pkg/analysis_server/lib/src/domain_kythe.dart
+++ b/pkg/analysis_server/lib/src/domain_kythe.dart
@@ -59,8 +59,12 @@ class KytheDomainHandler extends AbstractRequestHandler {
List<KytheEntry> entries = <KytheEntry>[];
// TODO(brianwilkerson) Figure out how to get the list of files.
List<String> files = <String>[];
- result.unit.accept(new KytheDartVisitor(entries, file,
- new InheritanceManager(result.libraryElement), result.content));
+ result.unit.accept(new KytheDartVisitor(
+ server.resourceProvider,
+ entries,
+ file,
+ new InheritanceManager(result.libraryElement),
+ result.content));
allResults.add(new KytheGetKytheEntriesResult(entries, files));
}
//
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/lib/src/services/kythe/kythe_visitors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698