lsp / org.pinelang.lsp.lsp.models / TextDocumentDidChangeParams
TextDocumentDidChangeParams¶
data class TextDocumentDidChangeParams
Constructors¶
Name | Summary |
---|---|
<init> | TextDocumentDidChangeParams(textDocument: VersionedTextDocumentIdentifier , contentChanges: List < TextDocumentContentChangeEvent >) |
Properties¶
Name | Summary |
---|---|
contentChanges | The actual content changes. The content changes describe single state changes to the document. So if there are two content changes c1 (at array index 0) and c2 (at array index 1) for a document in state S then c1 moves the document from S to S’ and c2 from S’ to S’‘. So c1 is computed on the state S and c2 is computed on the state S’.val contentChanges: List < TextDocumentContentChangeEvent > |
textDocument | The document that did change. The version number points to the version after all provided content changes have been applied.val textDocument: VersionedTextDocumentIdentifier |