Class: LanguageServer::Protocol::Interface::SemanticTokensRegistrationOptions
- Inherits:
-
Object
- Object
- LanguageServer::Protocol::Interface::SemanticTokensRegistrationOptions
- Defined in:
- lib/language_server/protocol/interface/semantic_tokens_registration_options.rb
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
Instance Method Summary collapse
-
#document_selector ⇒ DocumentSelector
A document selector to identify the scope of the registration.
-
#full ⇒ boolean | { delta?: boolean; }
Server supports providing semantic tokens for a full document.
-
#id ⇒ string
The id used to register the request.
-
#initialize(document_selector:, work_done_progress: nil, legend:, range: nil, full: nil, id: nil) ⇒ SemanticTokensRegistrationOptions
constructor
A new instance of SemanticTokensRegistrationOptions.
-
#legend ⇒ SemanticTokensLegend
The legend used by the server.
-
#range ⇒ boolean | {}
Server supports providing semantic tokens for a specific range of a document.
- #to_hash ⇒ Object
- #to_json(*args) ⇒ Object
- #work_done_progress ⇒ boolean
Constructor Details
#initialize(document_selector:, work_done_progress: nil, legend:, range: nil, full: nil, id: nil) ⇒ SemanticTokensRegistrationOptions
Returns a new instance of SemanticTokensRegistrationOptions.
5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 5 def initialize(document_selector:, work_done_progress: nil, legend:, range: nil, full: nil, id: nil) @attributes = {} @attributes[:documentSelector] = document_selector @attributes[:workDoneProgress] = work_done_progress if work_done_progress @attributes[:legend] = legend @attributes[:range] = range if range @attributes[:full] = full if full @attributes[:id] = id if id @attributes.freeze end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
66 67 68 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 66 def attributes @attributes end |
Instance Method Details
#document_selector ⇒ DocumentSelector
A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.
23 24 25 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 23 def document_selector attributes.fetch(:documentSelector) end |
#full ⇒ boolean | { delta?: boolean; }
Server supports providing semantic tokens for a full document.
53 54 55 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 53 def full attributes.fetch(:full) end |
#id ⇒ string
The id used to register the request. The id can be used to deregister the request again. See also Registration#id.
62 63 64 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 62 def id attributes.fetch(:id) end |
#legend ⇒ SemanticTokensLegend
The legend used by the server
36 37 38 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 36 def legend attributes.fetch(:legend) end |
#range ⇒ boolean | {}
Server supports providing semantic tokens for a specific range of a document.
45 46 47 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 45 def range attributes.fetch(:range) end |
#to_hash ⇒ Object
68 69 70 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 68 def to_hash attributes end |
#to_json(*args) ⇒ Object
72 73 74 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 72 def to_json(*args) to_hash.to_json(*args) end |
#work_done_progress ⇒ boolean
28 29 30 |
# File 'lib/language_server/protocol/interface/semantic_tokens_registration_options.rb', line 28 def work_done_progress attributes.fetch(:workDoneProgress) end |