lsp / org.pinelang.lsp.lsp.models / LSPCompletionList
LSPCompletionList¶
data class LSPCompletionList
Represents a collection of completion items to be presented in the editor.
Constructors¶
Name | Summary |
---|---|
<init> | Represents a collection of completion items to be presented in the editor.LSPCompletionList(isIncomplete: Boolean = false, items: List < CompletionItem >) |
Properties¶
Name | Summary |
---|---|
isIncomplete | This list it not complete. Further typing should result in recomputing this list.val isIncomplete: Boolean |
items | The completion items.val items: List < CompletionItem > |