Class: LanguageServer::Protocol::Interface::RenameFilesParams

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

Overview

The parameters sent in notifications/requests for user-initiated renames of files.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(files:) ⇒ RenameFilesParams

Returns a new instance of RenameFilesParams.



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

def initialize(files:)
  @attributes = {}

  @attributes[:files] = files

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



26
27
28
# File 'lib/language_server/protocol/interface/rename_files_params.rb', line 26

def attributes
  @attributes
end

Instance Method Details

#filesFileRename[]

An array of all files/folders renamed in this operation. When a folder is renamed, only the folder will be included, and not its children.

Returns:



22
23
24
# File 'lib/language_server/protocol/interface/rename_files_params.rb', line 22

def files
  attributes.fetch(:files)
end

#to_hashObject



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



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

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