(Re)-generate Server APIs.

Follow-up from: https://dart-review.googlesource.com/c/sdk/+/40101

Change-Id: I6aa8fd474bfa4b5529f1a1f1d664f29f84e56331
Reviewed-on: https://dart-review.googlesource.com/40462
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
This commit is contained in:
pq 2018-02-09 18:53:08 +00:00 committed by Phil Quitslund
parent 692eaba189
commit bea00e5bb3
2 changed files with 12 additions and 15 deletions

View file

@ -1000,10 +1000,9 @@ a:focus, a:hover {
</dd><dt class="field"><b>displayText: String<span style="color:#999999"> (optional)</span></b></dt><dd>
<p>
Text to be displayed in, for example, a completion pop-up. In many cases,
this will be the same as the completion but in some cases, such as
for overriding methods, this value will be different and tailored for
presenting and to be used to lookup against.
Text to be displayed in, for example, a completion pop-up. This field
is only defined if the displayed text should be different than the
completion. Otherwise it is omitted.
</p>
</dd><dt class="field"><b>selectionOffset: int</b></dt><dd>
@ -1031,7 +1030,7 @@ a:focus, a:hover {
<p>
An abbreviated version of the Dartdoc associated with the element
being suggested, This field is omitted if there is no Dartdoc
being suggested. This field is omitted if there is no Dartdoc
associated with the element.
</p>
</dd><dt class="field"><b>docComplete: String<span style="color:#999999"> (optional)</span></b></dt><dd>

View file

@ -713,18 +713,16 @@ class CompletionSuggestion implements HasToJson {
}
/**
* Text to be displayed in, for example, a completion pop-up. In many cases,
* this will be the same as the completion but in some cases, such as for
* overriding methods, this value will be different and tailored for
* presenting and to be used to lookup against.
* Text to be displayed in, for example, a completion pop-up. This field is
* only defined if the displayed text should be different than the
* completion. Otherwise it is omitted.
*/
String get displayText => _displayText;
/**
* Text to be displayed in, for example, a completion pop-up. In many cases,
* this will be the same as the completion but in some cases, such as for
* overriding methods, this value will be different and tailored for
* presenting and to be used to lookup against.
* Text to be displayed in, for example, a completion pop-up. This field is
* only defined if the displayed text should be different than the
* completion. Otherwise it is omitted.
*/
void set displayText(String value) {
this._displayText = value;
@ -788,14 +786,14 @@ class CompletionSuggestion implements HasToJson {
/**
* An abbreviated version of the Dartdoc associated with the element being
* suggested, This field is omitted if there is no Dartdoc associated with
* suggested. This field is omitted if there is no Dartdoc associated with
* the element.
*/
String get docSummary => _docSummary;
/**
* An abbreviated version of the Dartdoc associated with the element being
* suggested, This field is omitted if there is no Dartdoc associated with
* suggested. This field is omitted if there is no Dartdoc associated with
* the element.
*/
void set docSummary(String value) {