Class: LanguageServer::Protocol::Interface::CreateFileOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::CreateFileOptions
- Defined in:
- lib/language_server/protocol/interface/create_file_options.rb
Overview
Options to create a file.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#ignore_if_exists ⇒ boolean
Ignore if exists.
-
#initialize(overwrite: nil, ignore_if_exists: nil) ⇒ CreateFileOptions
constructor
A new instance of CreateFileOptions.
-
#overwrite ⇒ boolean
Overwrite existing file.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
Constructor Details
#initialize(overwrite: nil, ignore_if_exists: nil) ⇒ CreateFileOptions
Returns a new instance of CreateFileOptions.
8 9 10 11 12 13 14 15 |
# File 'lib/language_server/protocol/interface/create_file_options.rb', line 8 def initialize(overwrite: nil, ignore_if_exists: nil) @attributes = {} @attributes[:overwrite] = overwrite if overwrite @attributes[:ignoreIfExists] = ignore_if_exists if ignore_if_exists @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
33 34 35 |
# File 'lib/language_server/protocol/interface/create_file_options.rb', line 33 def attributes @attributes end |
Instance Method Details
#ignore_if_exists ⇒ boolean
Ignore if exists.
29 30 31 |
# File 'lib/language_server/protocol/interface/create_file_options.rb', line 29 def ignore_if_exists attributes.fetch(:ignoreIfExists) end |
#overwrite ⇒ boolean
Overwrite existing file. Overwrite wins over ‘ignoreIfExists`
21 22 23 |
# File 'lib/language_server/protocol/interface/create_file_options.rb', line 21 def overwrite attributes.fetch(:overwrite) end |
#to_hash ⇒ Object
35 36 37 |
# File 'lib/language_server/protocol/interface/create_file_options.rb', line 35 def to_hash attributes end |
#to_json(*args) ⇒ Object
39 40 41 |
# File 'lib/language_server/protocol/interface/create_file_options.rb', line 39 def to_json(*args) to_hash.to_json(*args) end |