Class: LanguageServer::Protocol::Interface::WillSaveTextDocumentParams

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

Overview

The parameters send in a will save text document notification.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(text_document:, reason:) ⇒ WillSaveTextDocumentParams

Returns a new instance of WillSaveTextDocumentParams.



8
9
10
11
12
13
14
15
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 8

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

  @attributes[:textDocument] = text_document
  @attributes[:reason] = reason

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



33
34
35
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 33

def attributes
  @attributes
end

Instance Method Details

#reasonnumber

The ‘TextDocumentSaveReason’.

Returns:

  • (number)


29
30
31
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 29

def reason
  attributes.fetch(:reason)
end

#text_documentTextDocumentIdentifier

The document that will be saved.



21
22
23
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 21

def text_document
  attributes.fetch(:textDocument)
end

#to_hashObject



35
36
37
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 35

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



39
40
41
# File 'lib/language_server/protocol/interface/will_save_text_document_params.rb', line 39

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