class LanguageServer::Protocol::Interface::RenameFilesParams


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

def files

Returns:
  • (FileRename[]) -
def files
  attributes.fetch(:files)
end

def initialize(files:)

def initialize(files:)
  @attributes = {}
  @attributes[:files] = files
  @attributes.freeze
end

def to_hash

def to_hash
  attributes
end

def to_json(*args)

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