Class: LanguageServer::Protocol::Interface::DidChangeTextDocumentParams

Inherits:
Object
  • Object
show all
Defined in:
lib/language_server/protocol/interface/did_change_text_document_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(text_document:, content_changes:) ⇒ DidChangeTextDocumentParams

Returns a new instance of DidChangeTextDocumentParams.



5
6
7
8
9
10
11
12
# File 'lib/language_server/protocol/interface/did_change_text_document_params.rb', line 5

def initialize(text_document:, content_changes:)
  @attributes = {}

  @attributes[:textDocument] = text_document
  @attributes[:contentChanges] = content_changes

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



34
35
36
# File 'lib/language_server/protocol/interface/did_change_text_document_params.rb', line 34

def attributes
  @attributes
end

Instance Method Details

#content_changesTextDocumentContentChangeEvent[]

The actual content changes. The content changes describe single state changes to the document. So if there are two content changes c1 and c2 for a document in state S then c1 move the document to S’ and c2 to S”.



30
31
32
# File 'lib/language_server/protocol/interface/did_change_text_document_params.rb', line 30

def content_changes
  attributes.fetch(:contentChanges)
end

#text_documentVersionedTextDocumentIdentifier

The document that did change. The version number points to the version after all provided content changes have been applied.



20
21
22
# File 'lib/language_server/protocol/interface/did_change_text_document_params.rb', line 20

def text_document
  attributes.fetch(:textDocument)
end

#to_hashObject



36
37
38
# File 'lib/language_server/protocol/interface/did_change_text_document_params.rb', line 36

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



40
41
42
# File 'lib/language_server/protocol/interface/did_change_text_document_params.rb', line 40

def to_json(*args)
  to_hash.to_json(*args)
end