Class: LSP::DidChangeConfigurationParams
- Defined in:
- lib/lsp/lsp_protocol.rb
Overview
export interface DidChangeConfigurationParams
/**
* The actual changed settings
*/
settings: any;
Instance Attribute Summary collapse
-
#settings ⇒ Object
type: any.
Instance Method Summary collapse
Methods inherited from LSPBase
Constructor Details
This class inherits a constructor from LSP::LSPBase
Instance Attribute Details
#settings ⇒ Object
type: any
359 360 361 |
# File 'lib/lsp/lsp_protocol.rb', line 359 def settings @settings end |
Instance Method Details
#from_h!(value) ⇒ Object
361 362 363 364 365 |
# File 'lib/lsp/lsp_protocol.rb', line 361 def from_h!(value) value = {} if value.nil? self.settings = value['settings'] self end |