class LSProtocol::CodeActionContext

Overview

Contains additional diagnostic information about the context in which a CodeActionProvider#provideCodeActions is run.

Included Modules

Defined in:

lsprotocol/types.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(diagnostics : Array(Diagnostic) | Nil, only : Array(CodeActionKind | String) | Nil = nil, trigger_kind : CodeActionTriggerKind | Nil = nil) #

[View source]

Instance Method Detail

def diagnostics : Array(Diagnostic) #

An array of diagnostics known on the client side overlapping the range provided to the textDocument/codeAction request. They are provided so that the server knows which errors are currently presented to the user for the given range. There is no guarantee that these accurately reflect the error state of the resource. The primary parameter to compute code actions is the provided range.


[View source]
def only : Array(CodeActionKind | String) | Nil #

Requested kind of actions to return.

Actions not of this kind are filtered out by the client before being shown. So servers can omit computing them.


[View source]
def trigger_kind : CodeActionTriggerKind | Nil #

[View source]