| Index: pkg/analysis_server/lib/src/domain_completion.dart
|
| diff --git a/pkg/analysis_server/lib/src/domain_completion.dart b/pkg/analysis_server/lib/src/domain_completion.dart
|
| index 23536e21957bec1c2f2b51331beb3ad8889bba84..81d7bf22cf58519968cb3f04d575954fc5c6fca9 100644
|
| --- a/pkg/analysis_server/lib/src/domain_completion.dart
|
| +++ b/pkg/analysis_server/lib/src/domain_completion.dart
|
| @@ -236,8 +236,11 @@ class CompletionDomainHandler implements RequestHandler {
|
| /**
|
| * Send completion notification results.
|
| */
|
| - void sendCompletionNotification(String completionId, int replacementOffset,
|
| - int replacementLength, Iterable<CompletionSuggestion> results,
|
| + void sendCompletionNotification(
|
| + String completionId,
|
| + int replacementOffset,
|
| + int replacementLength,
|
| + Iterable<CompletionSuggestion> results,
|
| bool isLast) {
|
| server.sendNotification(new CompletionResultsParams(
|
| completionId, replacementOffset, replacementLength, results, isLast)
|
|
|