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.

Since:

  • 3.16.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(files:) ⇒ RenameFilesParams

Returns a new instance of RenameFilesParams.

Since:

  • 3.16.0



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

def initialize(files:)
  @attributes = {}

  @attributes[:files] = files

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Since:

  • 3.16.0



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

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:

Since:

  • 3.16.0



24
25
26
# File 'lib/language_server/protocol/interface/rename_files_params.rb', line 24

def files
  attributes.fetch(:files)
end

#to_hashObject

Since:

  • 3.16.0



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object

Since:

  • 3.16.0



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

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