| 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));
|
| }
|
| //
|
|
|