Class: LSP::DiagnosticRelatedInformation
- Defined in:
- lib/lsp/lsp_types.rb
Overview
export interface DiagnosticRelatedInformation
/**
* The location of this related diagnostic information.
*/
location: Location;
/**
* The message of this related diagnostic information.
*/
message: string;
Instance Attribute Summary collapse
-
#location ⇒ Object
type: Location # type: string.
-
#message ⇒ Object
type: Location # type: string.
Instance Method Summary collapse
Methods inherited from LSPBase
Constructor Details
This class inherits a constructor from LSP::LSPBase
Instance Attribute Details
#location ⇒ Object
type: Location # type: string
260 261 262 |
# File 'lib/lsp/lsp_types.rb', line 260 def location @location end |
#message ⇒ Object
type: Location # type: string
260 261 262 |
# File 'lib/lsp/lsp_types.rb', line 260 def @message end |