Class: LSP::FoldingRangeParams
- Defined in:
- lib/lsp/lsp_protocol_foldingrange.rb
Overview
export interface FoldingRangeParams extends WorkDoneProgressParams, PartialResultParams
/**
* The text document.
*/
textDocument: TextDocumentIdentifier;
Instance Attribute Summary collapse
-
#textDocument ⇒ Object
type: TextDocumentIdentifier.
Instance Method Summary collapse
Methods inherited from LSPBase
Constructor Details
This class inherits a constructor from LSP::LSPBase
Instance Attribute Details
#textDocument ⇒ Object
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 |