Class: RubyLsp::Listeners::SignatureHelp
- Inherits:
-
RubyLsp::Listener
- Object
- RubyLsp::Listener
- RubyLsp::Listeners::SignatureHelp
- Extended by:
- T::Generic, T::Sig
- Defined in:
- lib/ruby_lsp/listeners/signature_help.rb
Constant Summary collapse
- ResponseType =
type_member { { fixed: T.nilable(T.any(Interface::SignatureHelp, T::Hash[Symbol, T.untyped])) } }
Instance Attribute Summary collapse
-
#_response ⇒ Object
readonly
Returns the value of attribute _response.
Instance Method Summary collapse
-
#initialize(nesting, index, dispatcher) ⇒ SignatureHelp
constructor
A new instance of SignatureHelp.
- #on_call_node_enter(node) ⇒ Object
Methods inherited from RubyLsp::Listener
Methods included from Requests::Support::Common
#create_code_lens, #markdown_from_index_entries, #not_in_dependencies?, #range_from_location, #range_from_node, #self_receiver?, #visible?
Constructor Details
#initialize(nesting, index, dispatcher) ⇒ SignatureHelp
Returns a new instance of SignatureHelp.
22 23 24 25 26 27 28 29 |
# File 'lib/ruby_lsp/listeners/signature_help.rb', line 22 def initialize(nesting, index, dispatcher) @nesting = nesting @index = index @_response = T.let(nil, ResponseType) super(dispatcher) dispatcher.register(self, :on_call_node_enter) end |
Instance Attribute Details
#_response ⇒ Object (readonly)
Returns the value of attribute _response.
13 14 15 |
# File 'lib/ruby_lsp/listeners/signature_help.rb', line 13 def _response @_response end |
Instance Method Details
#on_call_node_enter(node) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/ruby_lsp/listeners/signature_help.rb', line 32 def on_call_node_enter(node) return if DependencyDetector.instance.typechecker return unless self_receiver?(node) = node. return unless target_method = @index.resolve_method(, @nesting.join("::")) return unless target_method parameters = target_method.parameters name = target_method.name # If the method doesn't have any parameters, there's no need to show signature help return if parameters.empty? label = "#{name}(#{parameters.map(&:decorated_name).join(", ")})" arguments_node = node.arguments arguments = arguments_node&.arguments || [] active_parameter = (arguments.length - 1).clamp(0, parameters.length - 1) # If there are arguments, then we need to check if there's a trailing comma after the end of the last argument # to advance the active parameter to the next one if arguments_node && node.slice.byteslice(arguments_node.location.end_offset - node.location.start_offset) == "," active_parameter += 1 end @_response = Interface::SignatureHelp.new( signatures: [ Interface::SignatureInformation.new( label: label, parameters: parameters.map { |param| Interface::ParameterInformation.new(label: param.name) }, documentation: markdown_from_index_entries("", target_method), ), ], active_parameter: active_parameter, ) end |