class LanguageServer::Protocol::Interface::DocumentSymbolOptions

Attributes

attributes[R]

Public Class Methods

new(work_done_progress: nil, label: nil) click to toggle source
# File lib/language_server/protocol/interface/document_symbol_options.rb, line 5
def initialize(work_done_progress: nil, label: nil)
  @attributes = {}

  @attributes[:workDoneProgress] = work_done_progress if work_done_progress
  @attributes[:label] = label if label

  @attributes.freeze
end

Public Instance Methods

label() click to toggle source

A human-readable string that is shown when multiple outlines trees are shown for the same document.

@return [string]

# File lib/language_server/protocol/interface/document_symbol_options.rb, line 24
def label
  attributes.fetch(:label)
end
to_hash() click to toggle source
# File lib/language_server/protocol/interface/document_symbol_options.rb, line 30
def to_hash
  attributes
end
to_json(*args) click to toggle source
# File lib/language_server/protocol/interface/document_symbol_options.rb, line 34
def to_json(*args)
  to_hash.to_json(*args)
end
work_done_progress() click to toggle source

@return [boolean]

# File lib/language_server/protocol/interface/document_symbol_options.rb, line 15
def work_done_progress
  attributes.fetch(:workDoneProgress)
end