mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Note that InlayHints with the same position are shown in-order (#1681)
* Note that InlayHints with the same position are shown in-order Fixes https://github.com/microsoft/language-server-protocol/issues/1680. * Update metaModel --------- Co-authored-by: Dirk Bäumer <dirkb@microsoft.com>
This commit is contained in:
parent
95e13050b3
commit
016a803dca
4 changed files with 8 additions and 2 deletions
|
|
@ -113,6 +113,9 @@ export interface InlayHint {
|
|||
|
||||
/**
|
||||
* The position of this hint.
|
||||
*
|
||||
* If multiple hints have the same position, they will be shown in the order
|
||||
* they appear in the response.
|
||||
*/
|
||||
position: Position;
|
||||
|
||||
|
|
|
|||
|
|
@ -3735,7 +3735,7 @@
|
|||
"kind": "reference",
|
||||
"name": "Position"
|
||||
},
|
||||
"documentation": "The position of this hint."
|
||||
"documentation": "The position of this hint.\n\nIf multiple hints have the same position, they will be shown in the order\nthey appear in the response."
|
||||
},
|
||||
{
|
||||
"name": "label",
|
||||
|
|
|
|||
|
|
@ -113,6 +113,9 @@ export interface InlayHint {
|
|||
|
||||
/**
|
||||
* The position of this hint.
|
||||
*
|
||||
* If multiple hints have the same position, they will be shown in the order
|
||||
* they appear in the response.
|
||||
*/
|
||||
position: Position;
|
||||
|
||||
|
|
|
|||
|
|
@ -3735,7 +3735,7 @@
|
|||
"kind": "reference",
|
||||
"name": "Position"
|
||||
},
|
||||
"documentation": "The position of this hint."
|
||||
"documentation": "The position of this hint.\n\nIf multiple hints have the same position, they will be shown in the order\nthey appear in the response."
|
||||
},
|
||||
{
|
||||
"name": "label",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue