class

LSProtocol::TextDocumentEdit

Inherits JSON::Serializable / Reference / Object

Describes textual changes on a text document. A TextDocumentEdit describes all changes on a document version Si and after they are applied move the document to version Si+1. So the creator of a TextDocumentEdit doesn't need to sort the array of edits or do any kind of ordering. However the edits must be non overlapping.

Constructors

new(edits : Array(AnnotatedTextEdit | SnippetTextEdit | TextEdit) | Nil, text_document : OptionalVersionedTextDocumentIdentifier | Nil)
Source
new(pull : JSON::PullParser)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

edits

The edits to be applied.

@since 3.16.0 - support for AnnotatedTextEdit. This is guarded using a client capability.

@since 3.18.0 - support for SnippetTextEdit. This is guarded using a client capability.

Source
text_document

The text document to change.

Source