class LSP::DiagnosticRelatedInformation

Overview

Represents a related message and source code location for a diagnostic. This should be used to point to code locations that cause or are related to a diagnostics, e.g when duplicating a symbol in a scope.

Included Modules

Defined in:

base/diagnostic.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(line : Int32 | Nil, column : Int32 | Nil, size : Int32 | Nil, message : String, filename) #

[View source]
def self.new(pull : JSON::PullParser) #

[View source]
def self.new(**args) #

[View source]

Instance Method Detail

def location : Location #

The location of this related diagnostic information.


[View source]
def location=(location : Location) #

The location of this related diagnostic information.


[View source]
def message : String #

The message of this related diagnostic information.


[View source]
def message=(message : String) #

The message of this related diagnostic information.


[View source]