Class: LSP::FoldingRangeParams

Inherits:
LSPBase
  • Object
show all
Defined in:
lib/lsp/lsp_protocol_foldingrange.rb

Overview

export interface FoldingRangeParams extends WorkDoneProgressParams, PartialResultParams

/**
 * The text document.
 */
textDocument: TextDocumentIdentifier;

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from LSPBase

#initialize, #to_h, #to_json

Constructor Details

This class inherits a constructor from LSP::LSPBase

Instance Attribute Details

#textDocumentObject

type: TextDocumentIdentifier



116
117
118
# File 'lib/lsp/lsp_protocol_foldingrange.rb', line 116

def textDocument
  @textDocument
end

Instance Method Details

#from_h!(value) ⇒ Object



118
119
120
121
122
# File 'lib/lsp/lsp_protocol_foldingrange.rb', line 118

def from_h!(value)
  value = {} if value.nil?
  self.textDocument = value['textDocument'] # Unknown type
  self
end