Class: LanguageServer::Protocol::Interface::DeleteFileOptions

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

Overview

Delete file options

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(recursive: nil, ignore_if_not_exists: nil) ⇒ DeleteFileOptions

Returns a new instance of DeleteFileOptions.



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

def initialize(recursive: nil, ignore_if_not_exists: nil)
  @attributes = {}

  @attributes[:recursive] = recursive if recursive
  @attributes[:ignoreIfNotExists] = ignore_if_not_exists if ignore_if_not_exists

  @attributes.freeze
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



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

def attributes
  @attributes
end

Instance Method Details

#ignore_if_not_existsboolean

Ignore the operation if the file doesn’t exist.

Returns:

  • (boolean)


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

def ignore_if_not_exists
  attributes.fetch(:ignoreIfNotExists)
end

#recursiveboolean

Delete the content recursively if a folder is denoted.

Returns:

  • (boolean)


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

def recursive
  attributes.fetch(:recursive)
end

#to_hashObject



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

def to_hash
  attributes
end

#to_json(*args) ⇒ Object



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

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