Class: LanguageServer::Protocol::Interface::ApplyWorkspaceEditParams

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(label: nil, edit:) ⇒ ApplyWorkspaceEditParams

Returns a new instance of ApplyWorkspaceEditParams.



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

def initialize(label: nil, edit:)
  @attributes = {}

  @attributes[:label] = label if label
  @attributes[:edit] = edit

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



32
33
34
# File 'lib/language_server/protocol/interface/apply_workspace_edit_params.rb', line 32

def attributes
  @attributes
end

Instance Method Details

#editWorkspaceEdit

The edits to apply.

Returns:



28
29
30
# File 'lib/language_server/protocol/interface/apply_workspace_edit_params.rb', line 28

def edit
  attributes.fetch(:edit)
end

#labelstring

An optional label of the workspace edit. This label is presented in the user interface for example on an undo stack to undo the workspace edit.

Returns:

  • (string)


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

def label
  attributes.fetch(:label)
end

#to_hashObject



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



38
39
40
# File 'lib/language_server/protocol/interface/apply_workspace_edit_params.rb', line 38

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