class RubyLsp::Requests::SignatureHelp

The signature help request displays information about the parameters of a method as you type an invocation.

Currently only supports methods invoked directly on self without taking inheritance into account.

Example

class Foo
 def bar(a, b, c)
 end

 def baz
   bar( # -> Signature help will show the parameters of `bar`
 end

Public Class Methods

new(document, global_state, position, context, dispatcher, typechecker_enabled)

Calls superclass method

provider()

Public Instance Methods

perform()