lsp / org.pinelang.lsp.lsp.models / TextDocumentItem
TextDocumentItem¶
data class TextDocumentItem
Constructors¶
| Name | Summary |
|---|---|
| <init> | TextDocumentItem(uri:String, languageId:String, version:Double, text:String) |
Properties¶
| Name | Summary |
|---|---|
| languageId | The text document’s language identifier.val languageId:String |
| text | The content of the opened text document.val text:String |
| uri | The text document’s URI.val uri:String |
| version | The version number of this document (it will increase after each change, including undo/redo).val version:Double |