getEntryRequest method

  1. @override
Future<EntryRequest> getEntryRequest(
  1. KytheGetKytheEntriesParams parameters
)
override

Return the entries request that should be passes to the contributors returned from getEntryContributors.

Throw a RequestFailure if the request could not be created.

Implementation

@override
Future<EntryRequest> getEntryRequest(
    KytheGetKytheEntriesParams parameters) async {
  var path = parameters.file;
  var result = await getResolvedUnitResult(path);
  return DartEntryRequestImpl(resourceProvider, result);
}